From 6687037f1fdc76089f3d0ad2f4d48aa8c2263f28 Mon Sep 17 00:00:00 2001 From: Jan Ziak <0xe2.0x9a.0x9b@gmail.com> Date: Tue, 2 Aug 2016 08:40:00 -0600 Subject: [PATCH] vbo: fix format string compiler warning for 32-bit machines Signed-off-by: Jan Ziak (http://atom-symbol.net) <0xe2.0x9a.0x9b@gmail.com> Reviewed-by: Brian Paul --- src/mesa/vbo/vbo_exec_array.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/mesa/vbo/vbo_exec_array.c b/src/mesa/vbo/vbo_exec_array.c index 86b9e19..1997039 100644 --- a/src/mesa/vbo/vbo_exec_array.c +++ b/src/mesa/vbo/vbo_exec_array.c @@ -1611,8 +1611,9 @@ vbo_exec_MultiDrawArraysIndirectCount(GLenum mode, if (MESA_VERBOSE & VERBOSE_DRAW) _mesa_debug(ctx, "glMultiDrawArraysIndirectCountARB" "(%s, %lx, %lx, %i, %i)\n", - _mesa_enum_to_string(mode), indirect, - drawcount, maxdrawcount, stride); + _mesa_enum_to_string(mode), + (unsigned long)indirect, (unsigned long)drawcount, + maxdrawcount, stride); /* If is zero, the array elements are treated as tightly packed. */ if (stride == 0) @@ -1639,9 +1640,9 @@ vbo_exec_MultiDrawElementsIndirectCount(GLenum mode, GLenum type, if (MESA_VERBOSE & VERBOSE_DRAW) _mesa_debug(ctx, "glMultiDrawElementsIndirectCountARB" "(%s, %s, %lx, %lx, %i, %i)\n", - _mesa_enum_to_string(mode), - _mesa_enum_to_string(type), indirect, - drawcount, maxdrawcount, stride); + _mesa_enum_to_string(mode), _mesa_enum_to_string(type), + (unsigned long)indirect, (unsigned long)drawcount, + maxdrawcount, stride); /* If is zero, the array elements are treated as tightly packed. */ if (stride == 0) -- 2.7.4