Commit c9c49f3e authored by Thomas Braun's avatar Thomas Braun

Problem: Missing newline in printf statement

Solution: Add "\n" at end of format string.
parent cf34aeb2
......@@ -86,9 +86,9 @@ int main (void)
printf ("W: Only able to create %d sockets on this box\n", count);
printf ("I: Tune your system to increase maximum allowed file handles\n");
#if defined (ZMQ_HAVE_OSX)
printf ("I: On OS/X, run 'ulimit -n 1200' in bash");
printf ("I: On OS/X, run 'ulimit -n 1200' in bash\n");
#elif defined (ZMQ_HAVE_LINUX)
printf ("I: On Linux, run 'ulimit -n 1200' in bash");
printf ("I: On Linux, run 'ulimit -n 1200' in bash\n");
#endif
return -1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment