tiny fix for clang warning

This commit is contained in:
Ryo Nakamura
2023-03-04 16:50:34 +09:00
parent e67b7468e5
commit 205c7cf803

View File

@@ -387,7 +387,7 @@ void print_msg()
return;
}
if (!x.revents & POLLIN)
if (!(x.revents & POLLIN))
break; /* no message */
memset(buf, 0, sizeof(buf));