Fix some warnings.

This commit is contained in:
Markus F.X.J. Oberhumer
2020-12-03 03:10:12 +01:00
parent 8f7ac520eb
commit 94e72238f2
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -183,10 +183,10 @@ typedef size_t upx_rsize_t;
# define STDERR_FILENO (fileno(stderr))
#endif
#if !(HAVE_STRCASECMP) && (HAVE_STRICMP)
#if !(HAVE_STRCASECMP) && (HAVE_STRICMP) && !defined(strcasecmp)
# define strcasecmp stricmp
#endif
#if !(HAVE_STRNCASECMP) && (HAVE_STRNICMP)
#if !(HAVE_STRNCASECMP) && (HAVE_STRNICMP) && !defined(strncasecmp)
# define strncasecmp strnicmp
#endif