mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 12:40:09 +01:00
Fix typo.
This commit is contained in:
parent
0b9d7e477a
commit
bd4256acfd
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue