diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2007-05-26 18:21:51 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2007-05-26 18:21:51 +0000 |
commit | d306019f5c03d7633449b30e11dd0b44e1adfe63 (patch) | |
tree | c63b3ed99f1f05ab91b1a069dfc9953065c914f3 /src/directory.c | |
parent | 93e68adc79e5b8cc534656d848ee15932b3321bf (diff) | |
download | mpd-d306019f5c03d7633449b30e11dd0b44e1adfe63.tar.gz mpd-d306019f5c03d7633449b30e11dd0b44e1adfe63.tar.xz mpd-d306019f5c03d7633449b30e11dd0b44e1adfe63.zip |
"unable open" -> "unable to open"
git-svn-id: https://svn.musicpd.org/mpd/trunk@6278 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/directory.c')
-rw-r--r-- | src/directory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/directory.c b/src/directory.c index 6ead9007c..560c04b7b 100644 --- a/src/directory.c +++ b/src/directory.c @@ -1137,7 +1137,7 @@ int readDirectoryDB(void) mp3rootDirectory = newDirectory(NULL, NULL); while (!(fp = fopen(dbFile, "r")) && errno == EINTR) ; if (fp == NULL) { - ERROR("unable open db file \"%s\": %s\n", + ERROR("unable to open db file \"%s\": %s\n", dbFile, strerror(errno)); return -1; } |