From: Peter Hutterer Date: Fri, 14 Sep 2018 04:27:35 +0000 (+1000) Subject: tools: align the rotation value with 3 digits X-Git-Tag: 1.12.1~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=717b57b6a25ec60281f13de21ce60b2871a589d6;p=platform%2Fupstream%2Flibinput.git tools: align the rotation value with 3 digits This is a 0-360 ranged value, so let's print it aligned. Signed-off-by: Peter Hutterer --- diff --git a/tools/libinput-debug-events.c b/tools/libinput-debug-events.c index a264d1d..87c3169 100644 --- a/tools/libinput-debug-events.c +++ b/tools/libinput-debug-events.c @@ -398,7 +398,7 @@ print_tablet_axes(struct libinput_event_tablet_tool *t) if (libinput_tablet_tool_has_rotation(tool)) { rotation = libinput_event_tablet_tool_get_rotation(t); - printq("\trotation: %.2f%s", + printq("\trotation: %6.2f%s", rotation, changed_sym(t, rotation)); }