From dfce939ac844f3cb68d8206dab293d9aa6de67f9 Mon Sep 17 00:00:00 2001 From: Roman Iten Date: Fri, 30 Sep 2016 13:36:55 +0200 Subject: [PATCH] dde_linux: fix log output of screen resolution Fixes #2114 --- repos/dde_linux/src/lib/usb/include/platform.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); }