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/util/debug.c | |
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/util/debug.c')
-rw-r--r-- | src/util/debug.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/debug.c b/src/util/debug.c index d800481c847..7079c61b7f4 100644 --- a/src/util/debug.c +++ b/src/util/debug.c @@ -25,6 +25,7 @@ #include <string.h> #include "main/macros.h" #include "debug.h" +#include "u_string.h" uint64_t parse_debug_string(const char *debug, |