From: Ray Strode Date: Fri, 17 Sep 2010 01:17:50 +0000 (-0400) Subject: main: use ply_error_without_new_line for help string X-Git-Tag: 0.8.4~116 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b65ec089bd4f046817895cfb86cde737bba5b58c;p=thirdparty%2Fplymouth.git main: use ply_error_without_new_line for help string It already has new lines in it. --- diff --git a/src/main.c b/src/main.c index b06dbdc7..fa8bf514 100644 --- a/src/main.c +++ b/src/main.c @@ -2020,7 +2020,7 @@ main (int argc, help_string = ply_command_parser_get_help_string (state.command_parser); - ply_error ("%s", help_string); + ply_error_without_new_line ("%s", help_string); free (help_string); return EX_USAGE;