From: Jan-Benedict G. <jb...@us...> - 2005-04-26 22:22:00
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19780 Modified Files: syscall.c Log Message: - Starting off with a pristine tree, I noticed that the number of expected arguments for stat64 was wrong (three instead of two). Have we all had a fix for that in our local trees? Index: syscall.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/syscall.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- syscall.c 25 Apr 2005 13:11:56 -0000 1.13 +++ syscall.c 26 Apr 2005 22:21:50 -0000 1.14 @@ -224,7 +224,7 @@ [__NR_mmap2] = 6, /* 192 */ [__NR_truncate64] = 2, /* 193 */ [__NR_ftruncate64] = 2, /* 194 */ - [__NR_stat64] = 3, /* 195 */ + [__NR_stat64] = 2, /* 195 */ [__NR_lstat64] = 2, /* 196 */ [__NR_fstat64] = 2, /* 197 */ [__NR_lchown32] = 3, /* 198 */ |