dde_linux: fix log output of screen resolution

Fixes #2114
This commit is contained in:
Roman Iten 2016-09-30 13:36:55 +02:00 committed by Christian Helmuth
parent 7841058320
commit dfce939ac8

View File

@ -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 <hid> config node found - not starting the USB HID (Input) service");
}