quark

quark web server
git clone git://git.suckless.org/quark
Log | Files | Refs | LICENSE

commit 12ebbc5dedfb212af3b93bb1762aec31bb59562f
parent f04929e729992dcc435370a60b5e92bcd5bdfe81
Author: FRIGN <dev@frign.de>
Date:   Sun,  4 Sep 2016 20:16:51 +0200

Add missing newline

Thanks to Ali H. Fardan for reporting this!

Diffstat:
Mquark.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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; }