From bd4256acfde303f559d99090519d4217c19f787e Mon Sep 17 00:00:00 2001 From: Michal Krol Date: Tue, 16 May 2006 10:37:16 +0000 Subject: Fix typo. --- src/mesa/shader/shaderobjects.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa/shader/shaderobjects.c') diff --git a/src/mesa/shader/shaderobjects.c b/src/mesa/shader/shaderobjects.c index 986cec6526..3d31546453 100644 --- a/src/mesa/shader/shaderobjects.c +++ b/src/mesa/shader/shaderobjects.c @@ -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); } -- cgit v1.2.3