summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--htop.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/htop.c b/htop.c
index 9e82a122..78c292fb 100644
--- a/htop.c
+++ b/htop.c
@@ -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