This commit is contained in:
KinderRiven 2022-06-12 13:23:27 +08:00
parent 6fa12d02dd
commit 160e5aa91a

View File

@ -297,7 +297,7 @@ int copy_decompressor(const char *self, int output_fd)
return 1;
}
char * buf = (char *)malloc(1ul<<19);
char *buf = reinterpret_cast<char*>(malloc(1ul<<19));
ssize_t n = 0;
do
{