"unable open" -> "unable to open"

git-svn-id: https://svn.musicpd.org/mpd/trunk@6278 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
J. Alexander Treuman 2007-05-26 18:21:51 +00:00
parent 93e68adc79
commit d306019f5c

View File

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