From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1534) id 97DEA3857B9E; Tue, 12 Jul 2022 09:15:16 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 97DEA3857B9E MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Tobias Burnus To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-1613] libgomp: Add tailing \n to gomp_debug X-Act-Checkin: gcc X-Git-Author: Tobias Burnus X-Git-Refname: refs/heads/master X-Git-Oldrev: 8be17e2ac73d43fd9781b842d47b0c3df2578756 X-Git-Newrev: 220bef460153a0296e947f16492d35e67b1b5b22 Message-Id: <20220712091516.97DEA3857B9E@sourceware.org> Date: Tue, 12 Jul 2022 09:15:16 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Jul 2022 09:15:16 -0000 https://gcc.gnu.org/g:220bef460153a0296e947f16492d35e67b1b5b22 commit r13-1613-g220bef460153a0296e947f16492d35e67b1b5b22 Author: Tobias Burnus Date: Tue Jul 12 11:10:50 2022 +0200 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: --- libgomp/target.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }