mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-20 14:02:41 +02:00
Problem: Missing newline in printf statement
Solution: Add "\n" at end of format string.
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user