[build/src/watools.cpp:339]: (warning) Comparison of a boolean expression with an integer other than 0 or 1.
Source code is
if (!iw_socket<0)
Suggest new code
if (iw_socket >= 0)
Log in to post a comment.