Skip to content

Commit 7eedc0a

Browse files
authored
Update sock-redirect.h
1 parent ca9411a commit 7eedc0a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/core/sock/sock-redirect.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@
7272
#else
7373
#define XLIO_SYMBOL(_func) _func
7474
#define VALID_SYSCALL(_func) ((orig_os_api._func) != nullptr)
75-
#define SYSCALL(_func, ...) \
75+
#define SYSCALL(_func, ...)
7676
((VALID_SYSCALL(_func) ? (void)0 : get_orig_funcs()),
77-
/* coverity[var_deref_op] */
78-
orig_os_api._func(__VA_ARGS__))
77+
/* coverity[var_deref_op] */
78+
orig_os_api._func(__VA_ARGS__))
7979
#define SYSCALL_ERRNO_UNSUPPORTED(_func, ...) \
8080
(VALID_SYSCALL(_func) ? orig_os_api._func(__VA_ARGS__) : ((errno = EOPNOTSUPP), -1))
8181
#define XLIO_CALL(_func, ...) _func(__VA_ARGS__)

0 commit comments

Comments
 (0)