Mesa (master): mesa: s/%u/%d/ in _mesa_error() call in check_layer()

Brian Paul brianp at kemper.freedesktop.org
Tue Dec 5 23:10:39 UTC 2017


Module: Mesa
Branch: master
Commit: 08ba4a103f64b3f8c98dff155dbfef64499fea8b
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=08ba4a103f64b3f8c98dff155dbfef64499fea8b

Author: Brian Paul <brianp at vmware.com>
Date:   Tue Dec  5 09:57:23 2017 -0700

mesa: s/%u/%d/ in _mesa_error() call in check_layer()

The layer parameter is signed.  Fixes the error message seen when
running the arb_texture_multisample-errors test which checks a
negative layer value.

Reviewed-by: Marek Olšák <marek.olsak at amd.com>

---

 src/mesa/main/fbobject.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c
index f7702f1c13..30287abf7c 100644
--- a/src/mesa/main/fbobject.c
+++ b/src/mesa/main/fbobject.c
@@ -3189,8 +3189,7 @@ check_layer(struct gl_context *ctx, GLenum target, GLint layer,
     *     and layer is negative."
     */
    if (layer < 0) {
-      _mesa_error(ctx, GL_INVALID_VALUE,
-                  "%s(layer %u < 0)", caller, layer);
+      _mesa_error(ctx, GL_INVALID_VALUE, "%s(layer %d < 0)", caller, layer);
       return false;
    }
 




More information about the mesa-commit mailing list