Fixed error: unknown conversion type character 'z' in format

That apparently isn't supported by the mingw compiler
This commit is contained in:
Sam Lantinga
2026-07-13 09:21:49 -07:00
parent c97d9feb13
commit 80be09a804

View File

@@ -480,7 +480,7 @@ static bool ParseDescriptor(DescriptorContext *ctx, const Uint8 *descriptor, siz
}
#ifdef DEBUG_DESCRIPTOR
SDL_Log("Data: 0x%.2x, size: %zu, type: %d, tag: %d", data, size, type, tag);
SDL_Log("Data: 0x%.2x, size: %d, type: %d, tag: %d", data, (int)size, type, tag);
#endif
switch (type) {
case DescriptorItemTypeMain: