mirror of
https://github.com/zeromq/libzmq.git
synced 2025-01-01 19:05:18 +08:00
Merge pull request #2105 from t-b/bugfix/missing_newline
Problem: Missing newline in printf statement
This commit is contained in:
commit
3683a96fcb
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user