aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJ. Alexander Treuman <jat@spatialrift.net>2007-05-26 18:21:51 +0000
committerJ. Alexander Treuman <jat@spatialrift.net>2007-05-26 18:21:51 +0000
commitd306019f5c03d7633449b30e11dd0b44e1adfe63 (patch)
treec63b3ed99f1f05ab91b1a069dfc9953065c914f3 /src
parent93e68adc79e5b8cc534656d848ee15932b3321bf (diff)
downloadmpd-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')
-rw-r--r--src/directory.c2
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;
}