From 9f0c88f77e364dd004af7244ca51bbeda5beaab5 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Thu, 31 Jan 2019 22:38:06 -0500 Subject: fix SC0 --- nonstd/syscall.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nonstd/syscall.h') 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; \ -- cgit v1.2.1