1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-02 18:05:26 +03:00

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

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