Mesa (master): main: Correct _mesa_error with no format in bufferobj.c.

Laura Ekstrand ldeks at kemper.freedesktop.org
Tue Mar 17 20:31:31 UTC 2015


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

Author: Laura Ekstrand <laura at jlekstrand.net>
Date:   Tue Mar 17 13:27:31 2015 -0700

main: Correct _mesa_error with no format in bufferobj.c.

This fixes Bug 89616, a build failure due to line 1639 of bufferobj.c:
_mesa_error(ctx, GL_INVALID_OPERATION, func);

Trivial.

---

 src/mesa/main/bufferobj.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesa/main/bufferobj.c b/src/mesa/main/bufferobj.c
index 7d2e5f8..78d3d78 100644
--- a/src/mesa/main/bufferobj.c
+++ b/src/mesa/main/bufferobj.c
@@ -1636,7 +1636,7 @@ _mesa_buffer_sub_data(struct gl_context *ctx, struct gl_buffer_object *bufObj,
 
    if (bufObj->Immutable &&
        !(bufObj->StorageFlags & GL_DYNAMIC_STORAGE_BIT)) {
-      _mesa_error(ctx, GL_INVALID_OPERATION, func);
+      _mesa_error(ctx, GL_INVALID_OPERATION, "%s", func);
       return;
    }
 




More information about the mesa-commit mailing list