Commit 3683a96f authored by Constantin Rack's avatar Constantin Rack Committed by GitHub

Merge pull request #2105 from t-b/bugfix/missing_newline

Problem: Missing newline in printf statement
parents cf34aeb2 c9c49f3e
...@@ -86,9 +86,9 @@ int main (void) ...@@ -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;
} }
......
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