kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 9f2759e7b28489b686ac74b976380049a9f31372
parent 40a81a17bab913ad3be6bc3a6b003b546c53ee02
Author: Joris Vink <joris@coders.se>
Date:   Tue, 17 Jul 2018 14:36:21 +0200

missing newline in error

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

diff --git a/src/config.c b/src/config.c @@ -741,7 +741,7 @@ configure_restrict(char *options) } if (hdlr == NULL) { - printf("bad restrict option handler '%s' not found", argv[0]); + printf("bad restrict option handler '%s' not found\n", argv[0]); return (KORE_RESULT_ERROR); }