OSDN Git Service

main: Correct _mesa_error with no format in bufferobj.c.
authorLaura Ekstrand <laura@jlekstrand.net>
Tue, 17 Mar 2015 20:27:31 +0000 (13:27 -0700)
committerLaura Ekstrand <laura@jlekstrand.net>
Tue, 17 Mar 2015 20:30:54 +0000 (13:30 -0700)
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

index 7d2e5f8..78d3d78 100644 (file)
@@ -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;
    }