Add missing newline

Thanks to Ali H. Fardan for reporting this!
This commit is contained in:
FRIGN 2016-09-04 20:16:51 +02:00
parent f04929e729
commit 12ebbc5ded

View file

@ -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;
}