Fix error test — looks like nobody bumped into this one!

This commit is contained in:
Hisham 2016-02-19 13:39:16 -02:00
parent 9668cd11ed
commit d4741d5410
1 changed files with 2 additions and 1 deletions

3
htop.c
View File

@ -176,7 +176,8 @@ int main(int argc, char** argv) {
#ifdef HAVE_PROC
if (access(PROCDIR, R_OK) != 0) {
fprintf("Error: could not read procfs (compiled to look in %s).\n", PROCDIR);
fprintf(stderr, "Error: could not read procfs (compiled to look in %s).\n", PROCDIR);
exit(1);
}
#endif