mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-09-10 12:02:53 +02:00
Fix unused-variable and sign-compare warnings
This commit is contained in:
parent
428c936a9c
commit
a67e6d2306
2 changed files with 3 additions and 2 deletions
|
@ -17,8 +17,9 @@
|
|||
#endif
|
||||
|
||||
struct FluidFunctions fluid;
|
||||
|
||||
#ifndef SHARED_FLUID
|
||||
static void *so;
|
||||
#endif
|
||||
|
||||
void initFluidFunctions()
|
||||
{
|
||||
|
|
|
@ -74,7 +74,7 @@ const char *getUserLanguage()
|
|||
#endif
|
||||
#endif
|
||||
|
||||
for (int i = 0; i < strlen(buf); i++)
|
||||
for (int i = 0; (size_t)i < strlen(buf); i++)
|
||||
{
|
||||
#ifdef __WIN32__
|
||||
if (buf[i] == '-')
|
||||
|
|
Loading…
Add table
Reference in a new issue