From a2942d8f2696bdc2a98989f04275b497996d5478 Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Fri, 1 Jan 2016 16:58:49 -0800 Subject: mesa: Fix warning with MESA_VERBOSE=api for BindBufferRange MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reported-by: Dieter Nützel Signed-off-by: Jordan Justen --- src/mesa/main/bufferobj.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mesa') diff --git a/src/mesa/main/bufferobj.c b/src/mesa/main/bufferobj.c index 181eb49d408..3a05cd55042 100644 --- a/src/mesa/main/bufferobj.c +++ b/src/mesa/main/bufferobj.c @@ -3914,7 +3914,7 @@ _mesa_BindBufferRange(GLenum target, GLuint index, struct gl_buffer_object *bufObj; if (MESA_VERBOSE & VERBOSE_API) { - _mesa_debug(ctx, "glBindBufferRange(%s, %u, %u, %d, %d)\n", + _mesa_debug(ctx, "glBindBufferRange(%s, %u, %u, %ld, %ld)\n", _mesa_enum_to_string(target), index, buffer, offset, size); } -- cgit v1.2.3