adding \n to a bunch of error message strings

git-svn-id: https://svn.musicpd.org/mpd/trunk@6826 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
J. Alexander Treuman
2007-08-27 21:03:22 +00:00
parent f18e524176
commit 8d89add8e7
5 changed files with 8 additions and 8 deletions

View File

@@ -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;
}