X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ftests%2Fuserprog%2Fsc-boundary-2.c;h=8acf0361e3e7a392f3c9a5143632c134ca646109;hb=e8fe9231ac87ff242138f08d0afa217f2f76bf76;hp=6dce992fea87960d6e851b2e6a29e6145103d87f;hpb=cb3a47ebe6359d9902dd0a3a769d6ab524e7e37c;p=pintos-anon diff --git a/src/tests/userprog/sc-boundary-2.c b/src/tests/userprog/sc-boundary-2.c index 6dce992..8acf036 100644 --- a/src/tests/userprog/sc-boundary-2.c +++ b/src/tests/userprog/sc-boundary-2.c @@ -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)"); }