Commit d4741d54 authored by Hisham's avatar Hisham
Browse files

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

parent 9668cd11
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment