mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 03:38:06 +02:00
pan/decode: Fix missing newlines in error messages
Otherwise these error message lines end up truncated, which is a bit annoying. Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com> Reported-by: Icecream95 <ixn@disroot.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14575>
This commit is contained in:
parent
2bdfa4800d
commit
c85df67f27
1 changed files with 2 additions and 2 deletions
|
|
@ -125,7 +125,7 @@ static void
|
|||
pandecode_validate_buffer(mali_ptr addr, size_t sz)
|
||||
{
|
||||
if (!addr) {
|
||||
pandecode_msg("XXX: null pointer deref");
|
||||
pandecode_msg("XXX: null pointer deref\n");
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -1424,7 +1424,7 @@ GENX(pandecode_abort_on_fault)(mali_ptr jc_gpu_va)
|
|||
|
||||
/* Ensure the job is marked COMPLETE */
|
||||
if (h.exception_status != 0x1) {
|
||||
fprintf(stderr, "Incomplete job or timeout");
|
||||
fprintf(stderr, "Incomplete job or timeout\n");
|
||||
abort();
|
||||
}
|
||||
} while ((jc_gpu_va = next_job));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue