Adopt consistent style in asm statements.
[pintos-anon] / src / tests / userprog / sc-boundary.c
index fd147bd40ccd437f605a208140a140cb8f8ce6ba..d889535cf279f9af2d5688fd0ef21a5c1caf0719 100644 (file)
@@ -17,6 +17,6 @@ test_main (void)
   p[1] = 42;
 
   /* Invoke the system call. */
-  asm volatile ("movl %0, %%esp; int $0x30" :: "g" (p));
+  asm volatile ("movl %0, %%esp; int $0x30" : : "g" (p));
   fail ("should have called exit(42)");
 }