Adopt consistent style in asm statements.
[pintos-anon] / src / tests / userprog / sc-bad-arg.c
index aee48b0e15ee0ae21c5eb16be0505b97e1f8d7e6..0b512a0e59797e0e7e3ae006d44dea83710d2508 100644 (file)
@@ -12,6 +12,6 @@ void
 test_main (void) 
 {
   asm volatile ("movl $0xbffffffc, %%esp; movl %0, (%%esp); int $0x30"
-                :: "i" (SYS_EXIT));
+                : : "i" (SYS_EXIT));
   fail ("should have called exit(-1)");
 }