projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
537d046
)
gallium/aux/util/u_async_debug.c: Fix -Wtype-limits warning.
author
Gert Wollny
<gw.fossdev@gmail.com>
Thu, 16 Nov 2017 15:09:56 +0000
(16:09 +0100)
committer
Brian Paul
<brianp@vmware.com>
Fri, 17 Nov 2017 16:27:57 +0000
(09:27 -0700)
Use size_t instread of unsigned for new_max. realloc later expects
size_t as parameter anyway.
Signed-off-by: Gert Wollny <gw.fossdev@gmail.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
src/gallium/auxiliary/util/u_async_debug.c
patch
|
blob
|
history
diff --git
a/src/gallium/auxiliary/util/u_async_debug.c
b/src/gallium/auxiliary/util/u_async_debug.c
index 13791a578bf4152a110a4f559ffc3dd15354337b..04faa6850e76da5d9dcf4bbfb6a16ae10e38d679 100644
(file)
--- 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)) {