Skip to content

Commit c9c49f3

Browse files
committed
Problem: Missing newline in printf statement
Solution: Add "\n" at end of format string.
1 parent cf34aeb commit c9c49f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_system.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ int main (void)
8686
printf ("W: Only able to create %d sockets on this box\n", count);
8787
printf ("I: Tune your system to increase maximum allowed file handles\n");
8888
#if defined (ZMQ_HAVE_OSX)
89-
printf ("I: On OS/X, run 'ulimit -n 1200' in bash");
89+
printf ("I: On OS/X, run 'ulimit -n 1200' in bash\n");
9090
#elif defined (ZMQ_HAVE_LINUX)
91-
printf ("I: On Linux, run 'ulimit -n 1200' in bash");
91+
printf ("I: On Linux, run 'ulimit -n 1200' in bash\n");
9292
#endif
9393
return -1;
9494
}

0 commit comments

Comments
 (0)