1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-08 14:02:17 +03:00

Fixed latest change from Sanja (missing semicolon at end of macro)

This commit is contained in:
Georg Richter
2020-06-18 17:16:18 +02:00
parent cead7528a0
commit a746c3af44

View File

@@ -43,7 +43,7 @@
#define WIN_SET_NONBLOCKING(mysql) do { \
my_bool old_mode; \
if ((mysql)->net.pvio) ma_pvio_blocking((mysql)->net.pvio, FALSE, &old_mode); \
} while(0)
} while(0);
#else
#define WIN_SET_NONBLOCKING(mysql)
#endif