Date:2011-03-30 15:44:32 (12 years 11 months ago)
Author:Paul Cercueil
Commit:ec000e021476571a4107bc40ef408f0c7497fa49
Message:Changed an error message, that was displaying "Error:" twice. Plus, it now more meaningful.

Files: src/filelister.cpp (1 diff)

Change Details

src/filelister.cpp
7373    if (showDirectories || showFiles) {
7474        DIR *dirp;
7575        if ((dirp = opendir(path.c_str())) == NULL) {
76            ERROR("Error: opendir(%s)\n", path.c_str());
76            ERROR("Unable to open directory: %s\n", path.c_str());
7777            return;
7878        }
7979

Archive Download the corresponding diff file



interactive