Fix typo in FLUID_STRNCASECMP for Windows

This commit is contained in:
Marcus Weseloh 2017-11-12 11:00:20 +01:00
parent 50b50e765d
commit e844b3567c

View file

@ -275,7 +275,7 @@ do { strncpy(_dst,_src,_n); \
#endif
#if defined(WIN32) && !defined(MINGW32)
#define FLUID_STRNCASECMP _strincmp
#define FLUID_STRNCASECMP _strnicmp
#else
#define FLUID_STRNCASECMP strncasecmp
#endif