Update of /cvsroot/linux-vax/kernel-2.4/include/asm-vax
In directory usw-pr-cvs1:/tmp/cvs-serv26926/include/asm-vax
Modified Files:
unistd.h
Log Message:
DA: fix extra , in syscall2 macro
Index: unistd.h
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/include/asm-vax/unistd.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- unistd.h 2001/05/23 22:26:00 1.6
+++ unistd.h 2001/05/27 16:51:29 1.7
@@ -287,7 +287,7 @@
"movl sp, ap\n\t" \
"chmk r0 # %0 %1 %2 %3 %4\n\t" \
: "=r"(_sc_0), "=r"(_sc_9) \
- : "0"(_sc_0), "m"((long)arg1), "m"((long)arg2), \
+ : "0"(_sc_0), "m"((long)arg1), "m"((long)arg2) \
: _syscall_clobbers); \
_sc_ret = _sc_0, _sc_err = _sc_9; \
} \
|