From 4f11793e9d998806a85d4657db202f6f1129dd42 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Tue, 24 Nov 2020 12:45:52 +0900 Subject: [PATCH] graphics/nxwm/src/ctouchscreen.cxx: Fix syslog formats --- graphics/nxwm/src/ctouchscreen.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/graphics/nxwm/src/ctouchscreen.cxx b/graphics/nxwm/src/ctouchscreen.cxx index b7e279cc5..1fab3ee36 100644 --- a/graphics/nxwm/src/ctouchscreen.cxx +++ b/graphics/nxwm/src/ctouchscreen.cxx @@ -39,6 +39,7 @@ #include +#include #include #include #include @@ -557,7 +558,8 @@ void CTouchscreen::handleMouseInput(struct touch_sample_s *sample) y = (nxgl_coord_t)bigY; } - _info("raw: (%d, %d) scaled: (%d, %d)\n", rawX, rawY, x, y); + _info("raw: (%" PRId32 ", %" PRId32 ") scaled: (%d, %d)\n", + rawX, rawY, x, y); #endif }