diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2007-08-27 21:03:22 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2007-08-27 21:03:22 +0000 |
commit | 8d89add8e78d32b14df151e4b2825545b9be3e45 (patch) | |
tree | 101a14f1cbc8de2cb7345f8ad2030e5e0e3879e6 /src/path.c | |
parent | f18e52417639518545ebce3649f3ce3450bcb01c (diff) | |
download | mpd-8d89add8e78d32b14df151e4b2825545b9be3e45.tar.gz mpd-8d89add8e78d32b14df151e4b2825545b9be3e45.tar.xz mpd-8d89add8e78d32b14df151e4b2825545b9be3e45.zip |
adding \n to a bunch of error message strings
git-svn-id: https://svn.musicpd.org/mpd/trunk@6826 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/path.c')
-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; } |