diff options
Diffstat (limited to '')
-rw-r--r-- | src/path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/path.c b/src/path.c index f30eb0793..134a0701c 100644 --- a/src/path.c +++ b/src/path.c @@ -220,7 +220,7 @@ static char *pfx_path(const char *path, const char *pfx, const size_t pfx_len) /* unlikely, return an empty string because truncating would * also be wrong... break early and break loudly (the system * headers are likely screwed, not mpd) */ - ERROR("Cannot prefix '%s' to '%s', max: %d", pfx, path, MAXPATHLEN); + ERROR("Cannot prefix '%s' to '%s', max: %d\n", pfx, path, MAXPATHLEN); ret[0] = '\0'; return ret; } |