Merge pull request #71 from Pharap/make-cabi-cpp-compatible

Make cabi C++ compatible
This commit is contained in:
Scott Allen 2022-05-01 10:38:18 -04:00 committed by GitHub
commit 031e9164aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -342,8 +342,8 @@ int main(int argc, char **argv)
rawlen = w * (h+7) / 8;
bmp0 = malloc(rawlen); memset(bmp0, 0, rawlen);
bmp1 = malloc(rawlen); memset(bmp1, 0, rawlen);
bmp0 = (unsigned char *)malloc(rawlen); memset(bmp0, 0, rawlen);
bmp1 = (unsigned char *)malloc(rawlen); memset(bmp1, 0, rawlen);
printf("// %s width: %u height: %u\n", argv[1], w, h);