fix compiler warnings.

This commit is contained in:
Kim Kulling
2019-09-22 10:15:44 +02:00
parent ef54a00fc4
commit 94c488d7ea
3 changed files with 8 additions and 8 deletions

View File

@@ -235,7 +235,7 @@ bool MD5Parser::ParseSection(Section& out)
const char* szStart = ++sz; \
while('\"'!=*sz)++sz; \
const char* szEnd = (sz++); \
out.length = (size_t)(szEnd - szStart); \
out.length = (ai_uint32) (szEnd - szStart); \
::memcpy(out.data,szStart,out.length); \
out.data[out.length] = '\0';
// ------------------------------------------------------------------------------------------------