mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 00:14:11 +09:00
[codec,test] fix warnings in img2bgra
This commit is contained in:
@@ -84,7 +84,7 @@ static int dump_data(const wImage* img, const char* file)
|
||||
count = fprintf(fp, "static const uint8_t img_data[] ={\n");
|
||||
if (count < 0)
|
||||
goto fail;
|
||||
count = dump_data_hex(fp, img->data, img->height * img->scanline);
|
||||
count = dump_data_hex(fp, img->data, 1ULL * img->height * img->scanline);
|
||||
if (count < 0)
|
||||
goto fail;
|
||||
count = fprintf(fp, "};\n");
|
||||
|
||||
Reference in New Issue
Block a user