From 12ebbc5dedfb212af3b93bb1762aec31bb59562f Mon Sep 17 00:00:00 2001 From: FRIGN Date: Sun, 4 Sep 2016 20:16:51 +0200 Subject: [PATCH] Add missing newline Thanks to Ali H. Fardan for reporting this! --- quark.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quark.c b/quark.c index 6ff50f5..7e6530f 100644 --- a/quark.c +++ b/quark.c @@ -694,7 +694,7 @@ main(int argc, char *argv[]) /* raise the process limit */ rlim.rlim_cur = rlim.rlim_max = maxnprocs; if (setrlimit(RLIMIT_NPROC, &rlim) < 0) { - fprintf(stderr, "%s: setrlimit RLIMIT_NPROC: %s", argv0, + fprintf(stderr, "%s: setrlimit RLIMIT_NPROC: %s\n", argv0, strerror(errno)); return 1; }