mirror of
https://github.com/upa/mscp.git
synced 2026-02-04 03:24:58 +08:00
tiny fix for clang warning
This commit is contained in:
@@ -387,7 +387,7 @@ void print_msg()
|
||||
return;
|
||||
}
|
||||
|
||||
if (!x.revents & POLLIN)
|
||||
if (!(x.revents & POLLIN))
|
||||
break; /* no message */
|
||||
|
||||
memset(buf, 0, sizeof(buf));
|
||||
|
||||
Reference in New Issue
Block a user