Adopt consistent style in asm statements.
[pintos-anon] / src / tests / userprog / sc-boundary-2.c
index 6dce992fea87960d6e851b2e6a29e6145103d87f..8acf0361e3e7a392f3c9a5143632c134ca646109 100644 (file)
@@ -17,6 +17,6 @@ test_main (void)
   p[1] = 67;
 
   /* 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(67)");
 }