Fix a few places where there was a semicolon following the 'if' condition, makeing the following logic unconditional.

This commit is contained in:
Gregory Nutt
2017-10-10 14:24:13 -06:00
parent 2238785bf1
commit eb79a575f6
5 changed files with 12 additions and 7 deletions
+1 -1
View File
@@ -94,7 +94,7 @@ int nxmq_send(mqd_t mqdes, FAR const char *msg, size_t msglen, int prio)
*/
ret = nxmq_verify_send(mqdes, msg, msglen, prio);
if (ret < 0);
if (ret < 0)
{
return ret;
}