1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-05 01:03:14 +02:00

core: add missing trailing newline char in doc generation error messages

This commit is contained in:
Sébastien Helleu
2023-07-31 08:07:33 +02:00
parent b4fc345a13
commit cf1e073446
+2 -2
View File
@@ -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;
}
@@ -1652,7 +1652,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;
}