Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Maik Froechtenicht
glew
Commits
9617f352
Commit
9617f352
authored
Jan 07, 2016
by
Nigel Stewart
Browse files
Fix regression in _glewExtensionCompare due to strcmp migration
parent
18ef5d02
Changes
1
Hide whitespace changes
Inline
Side-by-side
auto/src/glew_init_gl.c
View file @
9617f352
...
...
@@ -4,7 +4,7 @@ static int _glewExtensionCompare(const void *a, const void *b)
{
/* http://www.chanduthedev.com/2012/07/strcmp-implementation-in-c.html */
const
char
*
s1
=
(
const
char
*
)
a
;
const
char
*
s2
=
(
const
char
*
)
b
;
const
char
*
s2
=
*
(
const
char
*
const
*
)
b
;
while
(
*
s1
||
*
s2
)
{
if
(
*
s1
>
*
s2
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment