From: Alain Spineux Date: Tue, 8 Mar 2022 13:33:44 +0000 (+0100) Subject: Tweak: in stack_trace() remove the extra \n between de-mangled function X-Git-Tag: Beta-15.0.0~636 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86bfd9645ba8b371892a2001c224820c40f6be70;p=thirdparty%2Fbacula.git Tweak: in stack_trace() remove the extra \n between de-mangled function --- diff --git a/bacula/src/lib/bsys.c b/bacula/src/lib/bsys.c index 4f7643e9a..2b0a17d69 100644 --- a/bacula/src/lib/bsys.c +++ b/bacula/src/lib/bsys.c @@ -1110,7 +1110,7 @@ void stack_trace() char buf[1000]; *buf = '\0'; while (fgets(buf, sizeof(buf), bpipe->rfd)) { - Pmsg1(000, " %s\n", buf); + Pmsg1(000, " %s", buf); } if (close_bpipe(bpipe) == 0) { ok = true;