From c9c49f3e9fe6ce17c00b0273473d42d8bcba7538 Mon Sep 17 00:00:00 2001 From: Thomas Braun Date: Mon, 12 Sep 2016 19:45:31 +0200 Subject: [PATCH] Problem: Missing newline in printf statement Solution: Add "\n" at end of format string. --- tests/test_system.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_system.cpp b/tests/test_system.cpp index 60c32ddd..8b09204c 100644 --- a/tests/test_system.cpp +++ b/tests/test_system.cpp @@ -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; }