Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed some VS2017 compilation error and warnings #1916

Merged
merged 8 commits into from
Dec 2, 2020
Next Next commit
QNX has no pselect() either.
Signed-off-by: raspopov <[email protected]>
  • Loading branch information
raspopov committed Oct 28, 2020
commit 0c9c82360c71c8d774a30cd8b812282502ea026d
2 changes: 1 addition & 1 deletion lib/loop.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ and the Eclipse Distribution License is available at
#include "tls_mosq.h"
#include "util_mosq.h"

#if !defined(WIN32) && !defined(__SYMBIAN32__)
#if !defined(WIN32) && !defined(__SYMBIAN32__) && !defined(__QNX__)
#define HAVE_PSELECT
#endif

Expand Down