1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-19 14:31:59 +00:00

X11: Fix vformat ambiguous int types for GCC 10 (again)

This commit is contained in:
Rémi Verschelde
2023-06-07 14:57:51 +02:00
parent ea6a141fff
commit 2ae5a0704a

View File

@@ -869,7 +869,7 @@ int default_window_error_handler(Display *display, XErrorEvent *error) {
"\n Major opcode of failed request: %d"
"\n Serial number of failed request: %d"
"\n Current serial number in output stream: %d",
String::utf8(message), error->request_code, error->minor_code, error->serial));
String::utf8(message), (uint64_t)error->request_code, (uint64_t)error->minor_code, (uint64_t)error->serial));
return 0;
}