summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gallium/auxiliary/util/u_async_debug.c2
1 files changed, 1 insertions, 1 deletions
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)) {