Skip to content

Commit

Permalink
Merge pull request #77957 from akien-mga/x11-fix-vformat-gcc10
Browse files Browse the repository at this point in the history
X11: Fix vformat ambiguous int types for GCC 10 (again)
  • Loading branch information
akien-mga committed Jun 7, 2023
2 parents 27b402b + 2ae5a07 commit a69730f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/linuxbsd/x11/display_server_x11.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit a69730f

Please sign in to comment.