diff options
author | Brian Paul <[email protected]> | 2016-05-23 14:58:02 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2016-05-24 10:26:26 -0600 |
commit | 39b7b8b90631a661166906f70879f6f6e11bc591 (patch) | |
tree | 914109738a0f7bc681074c949781011047e42132 | |
parent | ce1cc70e27f19a072fac7bb21b8a77f531c42f70 (diff) |
mesa: log buffer ID numbers in decimal, not hexadecimal
All the other error messages use decimal. Let's be consistent.
Reviewed-by: Anuj Phogat <[email protected]>
-rw-r--r-- | src/mesa/main/bufferobj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/bufferobj.c b/src/mesa/main/bufferobj.c index 34d81aa5d68..33bc57409b1 100644 --- a/src/mesa/main/bufferobj.c +++ b/src/mesa/main/bufferobj.c @@ -3967,7 +3967,7 @@ _mesa_InvalidateBufferSubData(GLuint buffer, GLintptr offset, bufObj = _mesa_lookup_bufferobj(ctx, buffer); if (!bufObj || bufObj == &DummyBufferObject) { _mesa_error(ctx, GL_INVALID_VALUE, - "glInvalidateBufferSubData(name = 0x%x) invalid object", + "glInvalidateBufferSubData(name = %u) invalid object", buffer); return; } @@ -4018,7 +4018,7 @@ _mesa_InvalidateBufferData(GLuint buffer) bufObj = _mesa_lookup_bufferobj(ctx, buffer); if (!bufObj || bufObj == &DummyBufferObject) { _mesa_error(ctx, GL_INVALID_VALUE, - "glInvalidateBufferData(name = 0x%x) invalid object", + "glInvalidateBufferData(name = %u) invalid object", buffer); return; } |