Fix typo.
authorMichal Krol <mjkrol@gmail.org>
Tue, 16 May 2006 10:37:16 +0000 (10:37 +0000)
committerMichal Krol <mjkrol@gmail.org>
Tue, 16 May 2006 10:37:16 +0000 (10:37 +0000)
src/mesa/shader/shaderobjects.c

index 986cec6526ddd05f57361411d3ca345331e37118..3d315464530dbd42b596f60cf26c1e598d44cfac 100644 (file)
@@ -49,7 +49,7 @@
    (**x)._generic._unknown.Release ((struct gl2_unknown_intf **) (x))
 
 static struct gl2_unknown_intf **
-lookup_handle (GLcontext *ctx, GLhandleARB handle, enum gl2_uuid uuid, const char *function)
+lookup_handle (GLcontext *ctx, GLhandleARB handle, enum gl2_uiid uiid, const char *function)
 {
    struct gl2_unknown_intf **unk;
 
@@ -67,7 +67,7 @@ lookup_handle (GLcontext *ctx, GLhandleARB handle, enum gl2_uuid uuid, const cha
    if (unk == NULL)
       _mesa_error (ctx, GL_INVALID_VALUE, function);
    else {
-      unk = (**unk).QueryInterface (unk, uuid);
+      unk = (**unk).QueryInterface (unk, uiid);
       if (unk == NULL)
          _mesa_error (ctx, GL_INVALID_OPERATION, function);
    }