diff --git a/repos/dde_linux/src/lib/usb/include/platform.h b/repos/dde_linux/src/lib/usb/include/platform.h index e8f97c4b73..1d03eb84a7 100644 --- a/repos/dde_linux/src/lib/usb/include/platform.h +++ b/repos/dde_linux/src/lib/usb/include/platform.h @@ -69,8 +69,8 @@ struct Services log("Could not read screen resolution in config node"); } - log("Configured HID screen with %lux%lu (multitouch=%s)", - screen_width, screen_height, multitouch ? "true" : "false"); + log("Configured HID screen with ", screen_width, "x", screen_height, + " (multitouch=", multitouch ? "true" : "false", ")"); } catch (Xml_node::Nonexistent_sub_node) { log("No config node found - not starting the USB HID (Input) service"); }