From 42c2ce71bcbcd07a3aff908a3a5b41a875b571a5 Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Sat, 31 Dec 2016 17:11:01 +0100 Subject: [PATCH] * src/main.c (main): Add missing \n in error message --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index c2c7853b..118f859e 100644 --- a/src/main.c +++ b/src/main.c @@ -1742,7 +1742,7 @@ for details.\n\n")); else if (opt.method) { fprintf (stderr, _("You cannot use --post-data or --post-file along with --method. " - "--method expects data through --body-data and --body-file options")); + "--method expects data through --body-data and --body-file options\n")); exit (WGET_EXIT_GENERIC_ERROR); } }