Skip to content

Commit

Permalink
OS/2: Patched to compile.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Sep 15, 2017
1 parent 69d3df3 commit 395b2b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/physfs_platform_os2.c
Expand Up @@ -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;
Expand Down

0 comments on commit 395b2b0

Please sign in to comment.