try to make compiler -Werror hush

This commit is contained in:
Ken Rice 2012-03-27 14:11:41 -05:00
parent 57fac728c6
commit a1ed759b1c

View File

@ -60,7 +60,9 @@ static void mycallback(esl_socket_t server_sock, esl_socket_t client_sock, struc
return;
}
system(path);
if(system(path)) {
esl_log(ESL_LOG_ERROR, "System Call Failed! [%s]\n", strerror(errno));
}
esl_disconnect(&handle);
}