From c7ebf9579701280fa2980b42f0b70e93f3177d5b Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Thu, 16 Nov 2017 16:09:56 +0100 Subject: [PATCH] gallium/aux/util/u_async_debug.c: Fix -Wtype-limits warning. Use size_t instread of unsigned for new_max. realloc later expects size_t as parameter anyway. Signed-off-by: Gert Wollny Reviewed-by: Brian Paul --- src/gallium/auxiliary/util/u_async_debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/util/u_async_debug.c b/src/gallium/auxiliary/util/u_async_debug.c index 13791a578bf..04faa6850e7 100644 --- a/src/gallium/auxiliary/util/u_async_debug.c +++ b/src/gallium/auxiliary/util/u_async_debug.c @@ -46,7 +46,7 @@ u_async_debug_message(void *data, unsigned *id, enum pipe_debug_type type, simple_mtx_lock(&adbg->lock); if (adbg->count >= adbg->max) { - unsigned new_max = MAX2(16, adbg->max * 2); + size_t new_max = MAX2(16, adbg->max * 2); if (new_max < adbg->max || new_max > SIZE_MAX / sizeof(*adbg->messages)) { -- 2.11.0