From 8b7e93385b7176ade3de89fa31c44e9690fcee89 Mon Sep 17 00:00:00 2001 From: Unbit Date: Thu, 6 Jun 2013 11:27:14 +0200 Subject: [PATCH] missing newline in --cflags --- core/uwsgi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/uwsgi.c b/core/uwsgi.c index 451ab0df..58e9ba0c 100644 --- a/core/uwsgi.c +++ b/core/uwsgi.c @@ -4059,7 +4059,7 @@ void uwsgi_opt_flock_wait(char *opt, char *filename, void *none) { // report CFLAGS used for compiling the server // use that values to build external plugins void uwsgi_opt_cflags(char *opt, char *filename, void *foobar) { - fprintf(stdout, "%s", uwsgi_get_cflags()); + fprintf(stdout, "%s\n", uwsgi_get_cflags()); exit(0); }