Adopt consistent style in asm statements.
[pintos-anon] / src / tests / userprog / sc-boundary.c
index 28525684d9676c70c4913ef2a4d8c513d2f44009..d889535cf279f9af2d5688fd0ef21a5c1caf0719 100644 (file)
@@ -13,10 +13,10 @@ test_main (void)
      and its argument at the beginning of another. */
   int *p = get_boundary_area ();
   p--;
-  p[0] = SYS_exit;
+  p[0] = SYS_EXIT;
   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)");
 }