From: Tobias Burnus Date: Tue, 12 Jul 2022 09:10:50 +0000 (+0200) Subject: libgomp: Add tailing \n to gomp_debug X-Git-Tag: basepoints/gcc-14~5594 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=220bef460153a0296e947f16492d35e67b1b5b22;p=thirdparty%2Fgcc.git libgomp: Add tailing \n to gomp_debug Contrary to gomp_{error,warning,fatal}, no tailing '\n' is added with gomp_debug; only affected was a 'requires'-related output. libgomp/ChangeLog: * target.c (gomp_target_init): Added tailing '\n' to gomp_debug. --- diff --git a/libgomp/target.c b/libgomp/target.c index 86f9d3050d9..135db1d88ab 100644 --- a/libgomp/target.c +++ b/libgomp/target.c @@ -4212,7 +4212,7 @@ gomp_target_init (void) name[cur_len] = '\0'; gomp_debug (1, "%s devices present but 'omp requires %s' " - "cannot be fulfilled", name, buf); + "cannot be fulfilled\n", name, buf); free (name); } }