mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-07-15 13:40:35 +00:00
Fixed error: unknown conversion type character 'z' in format
That apparently isn't supported by the mingw compiler
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user