linux/syscall-linux.c:3714:15: warning: ordered comparison of pointer with integer zero [-Wextra]
Source code is
if (status >= 0) masked_signals = lia64_sigset;
Maybe better code
if (*status >= 0) masked_signals = lia64_sigset;
Log in to post a comment.