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.
This commit is contained in:
Tobias Burnus 2022-07-12 11:10:50 +02:00
parent 8be17e2ac7
commit 220bef4601

View file

@ -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);
}
}