0
0
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:
Constantin Rack 2016-09-12 19:52:11 +02:00 committed by GitHub
commit 3683a96fcb

View File

@ -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;
}