diff options
author | Tobias Burnus <tobias@codesourcery.com> | 2022-07-12 11:10:50 +0200 |
---|---|---|
committer | Tobias Burnus <tobias@codesourcery.com> | 2022-07-12 11:10:50 +0200 |
commit | 220bef460153a0296e947f16492d35e67b1b5b22 (patch) | |
tree | a1fe126aa59cb03d42dadddc9e9c4c507c75f5e2 /libgomp | |
parent | 8be17e2ac73d43fd9781b842d47b0c3df2578756 (diff) | |
download | gcc-220bef460153a0296e947f16492d35e67b1b5b22.zip gcc-220bef460153a0296e947f16492d35e67b1b5b22.tar.gz gcc-220bef460153a0296e947f16492d35e67b1b5b22.tar.bz2 |
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.
Diffstat (limited to 'libgomp')
-rw-r--r-- | libgomp/target.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgomp/target.c b/libgomp/target.c index 86f9d30..135db1d 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); } } |