1
0
mirror of https://github.com/bobranten/Ext4Fsd.git synced 2025-10-30 05:18:31 -05:00

added some typecasts to avoid compiler warnings

This commit is contained in:
Bo Brantén
2020-03-08 23:41:59 +01:00
parent e93d7f5361
commit 4f8ee64b43
4 changed files with 6 additions and 6 deletions

View File

@@ -507,7 +507,7 @@ void Ext2Log(DWORD ll, char *fn, int ln, char *format, ... )
GetLocalTime(&st);
sprintf_s(s, 256, "%2.2u:%2.2u:%2.2u (%x): ", st.wHour,
st.wMinute, st.wSecond, GetCurrentThreadId());
i = strlen(s);
i = (int)strlen(s);
}
/* write user message to buffer s */