Problem: Missing newline in printf statement

Solution: Add "\n" at end of format string.
This commit is contained in:
Thomas Braun
2016-09-12 19:45:31 +02:00
parent cf34aeb298
commit c9c49f3e9f

View File

@@ -86,9 +86,9 @@ int main (void)
printf ("W: Only able to create %d sockets on this box\n", count); 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"); printf ("I: Tune your system to increase maximum allowed file handles\n");
#if defined (ZMQ_HAVE_OSX) #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) #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 #endif
return -1; return -1;
} }