* src/url.c (mkalldirs): Add newline to log message

This commit is contained in:
Tim Rühsen 2017-02-02 11:11:50 +01:00
parent 2e70409844
commit d0e02a54ae

View File

@ -1284,7 +1284,7 @@ mkalldirs (const char *path)
}
res = make_directory (t);
if (res != 0)
logprintf (LOG_NOTQUIET, "%s: %s", t, strerror (errno));
logprintf (LOG_NOTQUIET, "%s: %s\n", t, strerror (errno));
xfree (t);
return res;
}