From 1ffd0a58b91702b7a1e435ba03e992699e331bc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Mon, 31 Jul 2023 08:06:01 +0200 Subject: [PATCH] core: add missing trailing newline char in doc generation error messages --- src/core/wee-doc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/wee-doc.c b/src/core/wee-doc.c index d9cf309b8..bfadc0a15 100644 --- a/src/core/wee-doc.c +++ b/src/core/wee-doc.c @@ -126,7 +126,7 @@ doc_gen_open_file (const char *path, const char *doc, const char *name, if (!file) { string_fprintf (stderr, - "doc generator: ERROR: unable to write file \"%s\"", + "doc generator: ERROR: unable to write file \"%s\"\n", filename); return NULL; } @@ -1648,7 +1648,7 @@ doc_generate (const char *path) { string_fprintf ( stderr, - "doc generator: ERROR: failed to create directory \"%s\")", + "doc generator: ERROR: failed to create directory \"%s\")\n", path); goto end; }