| Index: core/src/fxcrt/fxcrt_platforms.cpp
|
| diff --git a/core/src/fxcrt/fxcrt_platforms.cpp b/core/src/fxcrt/fxcrt_platforms.cpp
|
| index 0781ba436cb6245ce7a1185c3f55127660ba7665..74affbe4b9e3179b2e1aab0be1947cc8b43df2d3 100644
|
| --- a/core/src/fxcrt/fxcrt_platforms.cpp
|
| +++ b/core/src/fxcrt/fxcrt_platforms.cpp
|
| @@ -168,7 +168,7 @@ FX_BOOL FX_File_Copy(FX_BSTR fileNameSrc, FX_BSTR fileNameDst)
|
| return FALSE;
|
| }
|
| FX_FILESIZE num = 0;
|
| - FX_LPBYTE pBuffer = FX_Alloc(FX_BYTE, 32768);
|
| + FX_LPBYTE pBuffer = FX_Alloc(uint8_t, 32768);
|
| while (num = src.Read(pBuffer, 32768)) {
|
| if (dst.Write(pBuffer, num) != num) {
|
| break;
|
|
|