Changed an error message, that was displaying "Error:" twice. Plus, it now more meaningful.

This commit is contained in:
Ayla
2011-03-30 15:44:32 +02:00
parent bbda0d9cf8
commit ec000e0214
+1 -1
View File
@@ -73,7 +73,7 @@ void FileLister::browse()
if (showDirectories || showFiles) {
DIR *dirp;
if ((dirp = opendir(path.c_str())) == NULL) {
ERROR("Error: opendir(%s)\n", path.c_str());
ERROR("Unable to open directory: %s\n", path.c_str());
return;
}