Remove _mesa_strlen in favor of plain strlen.
This commit is contained in:

committed by
Kristian Høgsberg

parent
f69d1d1438
commit
21d0c70b4b
@@ -378,7 +378,7 @@ Peek_Token(struct parse_state *parseState, GLubyte *token)
|
||||
parseState->pos += (-i);
|
||||
return GL_FALSE;
|
||||
}
|
||||
len = (GLint)_mesa_strlen((const char *) token);
|
||||
len = (GLint) strlen((const char *) token);
|
||||
parseState->pos += (i - len);
|
||||
return GL_TRUE;
|
||||
}
|
||||
|
Reference in New Issue
Block a user