Skip to content

Commit

Permalink
Merge pull request #2105 from t-b/bugfix/missing_newline
Browse files Browse the repository at this point in the history
Problem: Missing newline in printf statement
  • Loading branch information
c-rack committed Sep 12, 2016
2 parents cf34aeb + c9c49f3 commit 3683a96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_system.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 3683a96

Please sign in to comment.