search for: 60fab13

Displaying 1 result from an estimated 1 matches for "60fab13".

Did you mean: 60f2b1f
2006 May 08
0
[patch] s390 syscall.c declare err
.../klibc/arch/s390/syscall.c:10: error: parameter name omitted usr/klibc/arch/s390/syscall.c:12: error: 'err' undeclared (first use in this function) Signed-off-by: maximilian attems <maks@sternwelten.at> diff --git a/usr/klibc/arch/s390/syscall.c b/usr/klibc/arch/s390/syscall.c index 60fab13..e1d201d 100644 --- a/usr/klibc/arch/s390/syscall.c +++ b/usr/klibc/arch/s390/syscall.c @@ -7,7 +7,7 @@ */ #include <errno.h> -unsigned long __syscall_common(unsigned long) +unsigned long __syscall_common(unsigned long err) { if (err < -4095UL) return err;