Skip to content

Commit

Permalink
Merge pull request openshift#128 from crosbymichael/fix-nsenter
Browse files Browse the repository at this point in the history
Correct nsenter fprintf syntax
  • Loading branch information
vmarmol committed Jul 24, 2014
2 parents 76f1930 + 52e7350 commit e6a43c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion namespaces/nsenter.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ void nsenter() {
if (console != NULL) {
consolefd = open(console, O_RDWR);
if (consolefd < 0) {
fprintf(stderr, "nsenter: failed to open console %s\n", console, strerror(errno));
fprintf(stderr, "nsenter: failed to open console %s %s\n", console, strerror(errno));
exit(1);
}
}
Expand Down

0 comments on commit e6a43c1

Please sign in to comment.