summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nonstd/syscall.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/nonstd/syscall.h b/nonstd/syscall.h
index e77ceeaa..e698f40d 100644
--- a/nonstd/syscall.h
+++ b/nonstd/syscall.h
@@ -28,7 +28,7 @@
#define SC0(_type) static int _scno = -2; \
if (_scno == -2) { _scno = __libc.syscall_lookup(__func__); } \
- _type __ret = __libc.syscall(_scno); \
+ _type _ret = __libc.syscall(_scno); \
if (_ret < 0) { \
errno = -_ret; \
return -1; \