Skip to content

Commit

Permalink
tests: Don't include a newline in ovs_fatal() calls.
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Pettit <jpettit@ovn.org>
Acked-by: Ben Pfaff <blp@ovn.org>
  • Loading branch information
justinpettit committed Feb 10, 2018
1 parent f8e79d8 commit 94c0d9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test-rstp.c
Expand Up @@ -467,7 +467,7 @@ test_rstp_main(int argc, char *argv[])
vlog_set_levels(NULL, VLF_SYSLOG, VLL_OFF);

if (argc != 2) {
ovs_fatal(0, "usage: test-rstp INPUT.RSTP\n");
ovs_fatal(0, "usage: test-rstp INPUT.RSTP");
}
file_name = argv[1];

Expand Down
2 changes: 1 addition & 1 deletion tests/test-stp.c
Expand Up @@ -446,7 +446,7 @@ test_stp_main(int argc, char *argv[])
vlog_set_levels(NULL, VLF_SYSLOG, VLL_OFF);

if (argc != 2) {
ovs_fatal(0, "usage: test-stp INPUT.STP\n");
ovs_fatal(0, "usage: test-stp INPUT.STP");
}
file_name = argv[1];

Expand Down

0 comments on commit 94c0d9f

Please sign in to comment.