diff options
author | Erik Faye-Lund <[email protected]> | 2019-08-08 14:08:16 +0200 |
---|---|---|
committer | Erik Faye-Lund <[email protected]> | 2019-08-15 20:23:44 +0200 |
commit | 544b0886165ff891bda59f9bd4ec058f8af53e5a (patch) | |
tree | f2e91711e4a9ce1f3c7d47b0509360ead5a63c57 /src/egl/main | |
parent | ecd312be96d417e70eaf4717fe64912ecbe8f713 (diff) |
win32: unify strcasecmp definitions
There was two incompatible definitions of strcasecmp, which lead to a
compiler warning. Let's clean this up by only leaving one of them, and
using that one all the time.
Signed-off-by: Erik Faye-Lund <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/egl/main')
-rw-r--r-- | src/egl/main/egllog.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/egl/main/egllog.c b/src/egl/main/egllog.c index c223f49b0fe..6a91952577f 100644 --- a/src/egl/main/egllog.c +++ b/src/egl/main/egllog.c @@ -42,6 +42,7 @@ #include <strings.h> #include "c11/threads.h" #include "util/macros.h" +#include "util/u_string.h" #include "egllog.h" |