Fix broken if in poll.c

One if was not working due to an extra semicolon at the end of the line.
This commit is contained in:
Markus Makela
2016-09-12 06:46:56 +03:00
parent a32b4bdf6b
commit 2d229927fe

View File

@ -225,7 +225,7 @@ poll_init()
bitmask_init(&poll_mask);
n_threads = config_threadcount();
thread_data = (THREAD_DATA *)MXS_MALLOC(n_threads * sizeof(THREAD_DATA));
if (thread_data);
if (thread_data)
{
for (i = 0; i < n_threads; i++)
{