Skip to content
Snippets Groups Projects
Commit 0cf3b31e authored by Frederik B's avatar Frederik B Committed by GitHub
Browse files

fix missing parens on logical not (GCC warning)

parent b790c67f
No related branches found
No related tags found
No related merge requests found
...@@ -317,7 +317,7 @@ xit\n"); ...@@ -317,7 +317,7 @@ xit\n");
exit (EXIT_FAILURE); exit (EXIT_FAILURE);
} }
if ( ! portno > 0) { if ( ! (portno > 0)) {
fanout_debug (0, "ERROR invalid port\n"); fanout_debug (0, "ERROR invalid port\n");
exit (EXIT_FAILURE); exit (EXIT_FAILURE);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment