mesa: Fix format specifier warning in mesa_DispatchComputeIndirect()
authorRhys Kidd <rhyskidd@gmail.com>
Wed, 30 Sep 2015 13:18:52 +0000 (23:18 +1000)
committerJordan Justen <jordan.l.justen@intel.com>
Wed, 30 Sep 2015 17:13:41 +0000 (10:13 -0700)
commit83018f5c20a2a1b48f88704a25ebb8410b2f9c71
tree6df7e7811c0d6df467a9051e271dffe02d00d748
parent3948ac19a40663bd00deb84518ac747daa5f401f
mesa: Fix format specifier warning in mesa_DispatchComputeIndirect()

Commit 1665d29ee3125743fd6daf3c43fc715f543d5669 introduced an incorrect
format specifier that operates on GLintptr indirect within the function
_mesa_DispatchComputeIndirect().

This patch mitigates the introduced GCC warning:

src/mesa/main/compute.c: In function '_mesa_DispatchComputeIndirect':
src/mesa/main/compute.c:53:7: warning: format '%d' expects argument of type 'int', but argument 3 has type 'GLintptr' [-Wformat=]
       _mesa_debug(ctx, "glDispatchComputeIndirect(%d)\n", indirect);
           ^

v2: Amend for Boyan Ding <boyan.j.ding@gmail.com> feedback.

Signed-off-by: Rhys Kidd <rhyskidd@gmail.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
src/mesa/main/compute.c