aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJordan Justen <[email protected]>2016-01-01 16:58:49 -0800
committerJordan Justen <[email protected]>2016-01-01 17:27:14 -0800
commita2942d8f2696bdc2a98989f04275b497996d5478 (patch)
tree3febc76ebde71c3dc6018cf8b9ef1e90305f5ec6
parentc1d14c6817e3fa9a1c04f9b6c51b4ca601637843 (diff)
mesa: Fix warning with MESA_VERBOSE=api for BindBufferRange
Reported-by: Dieter Nützel <[email protected]> Signed-off-by: Jordan Justen <[email protected]>
-rw-r--r--src/mesa/main/bufferobj.c2
1 files changed, 1 insertions, 1 deletions
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);
}