Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
3683a96f
Commit
3683a96f
authored
Sep 12, 2016
by
Constantin Rack
Committed by
GitHub
Sep 12, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2105 from t-b/bugfix/missing_newline
Problem: Missing newline in printf statement
parents
cf34aeb2
c9c49f3e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
test_system.cpp
tests/test_system.cpp
+2
-2
No files found.
tests/test_system.cpp
View file @
3683a96f
...
@@ -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
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment