Module: Mesa Branch: main Commit: 972082d05115e574ecccdf627bef0bb258783476 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=972082d05115e574ecccdf627bef0bb258783476
Author: Mike Blumenkrantz <[email protected]> Date: Mon Mar 27 15:49:51 2023 -0400 util/blitter: fix line wrapping on error to avoid giving wrong line number Reviewed-by: Marek Olšák <[email protected]> Reviewed-by: Emma Anholt <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22581> --- src/gallium/auxiliary/util/u_blitter.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gallium/auxiliary/util/u_blitter.c b/src/gallium/auxiliary/util/u_blitter.c index 5552e04c7c4..a67c910d00a 100644 --- a/src/gallium/auxiliary/util/u_blitter.c +++ b/src/gallium/auxiliary/util/u_blitter.c @@ -607,8 +607,7 @@ void util_blitter_set_texture_multisample(struct blitter_context *blitter, void util_blitter_set_running_flag(struct blitter_context *blitter) { if (blitter->running) { - _debug_printf("u_blitter:%i: Caught recursion. This is a driver bug.\n", - __LINE__); + _debug_printf("u_blitter:%i: Caught recursion. This is a driver bug.\n", __LINE__); } blitter->running = true;
