From 6386306671e392b4e5b121c56931c92c28ca2852 Mon Sep 17 00:00:00 2001 From: Joseph Sutton Date: Mon, 7 Aug 2023 16:54:26 +1200 Subject: [PATCH] s4:samba: Add missing newline to logging message Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- source4/samba/process_prefork.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/samba/process_prefork.c b/source4/samba/process_prefork.c index 47bd23f5e23..92e145d4c67 100644 --- a/source4/samba/process_prefork.c +++ b/source4/samba/process_prefork.c @@ -363,7 +363,7 @@ static void prefork_fork_master( struct talloc_ctx *ctx = talloc_new(NULL); char *name = NULL; if (ctx == NULL) { - DBG_ERR("Out of memory"); + DBG_ERR("Out of memory\n"); exit(127); } name = talloc_asprintf(ctx, "prefork-master-%s", service_name);