aboutsummaryrefslogtreecommitdiff
path: root/src/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc.c')
-rw-r--r--src/misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc.c b/src/misc.c
index c3cbf7b..ae6437e 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -25,7 +25,7 @@ pid_t fork_run(int _stdin, int _stdout, int _stderr, int argc, char* argv[])
execv(argv[0], arv);
- printf("EXEC ERROR %i: %s\r\n", errno, strerror(errno));
+ LOGPRINTF(_LOG_ERROR, "fork_run(): exec failed\n");
exit(1);
}
else {