summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/arm/syscall.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/arm/syscall.c')
-rw-r--r--libc/sysdeps/linux/arm/syscall.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/arm/syscall.c b/libc/sysdeps/linux/arm/syscall.c
index ec2907939..65afa03ae 100644
--- a/libc/sysdeps/linux/arm/syscall.c
+++ b/libc/sysdeps/linux/arm/syscall.c
@@ -41,7 +41,8 @@ long syscall(long sysnum, long a, long b, long c, long d, long e, long f)
"r"(_r6)
: "memory");
if(_r0 >=(unsigned long) -4095) {
- (*__errno_location())=(-_r0);
+ long err = _r0;
+ (*__errno_location())=(-err);
_r0=(unsigned long) -1;
}
return (long) _r0;