r300: Fix missing \n in an error message.

Reviewed-by: Matt Turner <mattst88@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14847>
This commit is contained in:
Emma Anholt 2022-01-31 11:31:31 -08:00
parent 41ed470f6f
commit 5f55e7b845
1 changed files with 1 additions and 1 deletions

View File

@ -655,7 +655,7 @@ void r500BuildFragmentProgramHwCode(struct radeon_compiler *c, void *user)
}
if (code->max_temp_idx >= compiler->Base.max_temp_regs)
rc_error(&compiler->Base, "Too many hardware temporaries used");
rc_error(&compiler->Base, "Too many hardware temporaries used\n");
if (compiler->Base.Error)
return;