Module: Mesa Branch: master Commit: 6687037f1fdc76089f3d0ad2f4d48aa8c2263f28 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=6687037f1fdc76089f3d0ad2f4d48aa8c2263f28
Author: Jan Ziak <[email protected]> Date: Tue Aug 2 08:40:00 2016 -0600 vbo: fix format string compiler warning for 32-bit machines Signed-off-by: Jan Ziak (http://atom-symbol.net) <[email protected]> Reviewed-by: Brian Paul <[email protected]> --- 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 <stride> 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 <stride> is zero, the array elements are treated as tightly packed. */ if (stride == 0) _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
