OS/2: Patched to compile.

This commit is contained in:
Ryan C. Gordon 2017-09-15 19:52:24 -04:00
parent 69d3df3286
commit 395b2b02dd
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ static char *cvtUtf8ToCodepage(const char *utf8str)
else
{
int rc;
const size_t cplen = unilen * 4; /* overallocate, just in case. */
size_t cplen = unilen * 4; /* overallocate, just in case. */
cpptr = (char *) allocator.Malloc(cplen);
GOTO_IF(!cpptr, PHYSFS_ERR_OUT_OF_MEMORY, failed);
cpstr = cpptr;