From a9c84e19412033d521cc72539981ae631264729d Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Sat, 21 Nov 2020 09:26:07 +0900 Subject: [PATCH] drivers/input/button_upper.c: Fix a syslog format --- drivers/input/button_upper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/input/button_upper.c b/drivers/input/button_upper.c index 6aaf9b83bf..8f281c89fd 100644 --- a/drivers/input/button_upper.c +++ b/drivers/input/button_upper.c @@ -663,7 +663,7 @@ static int btn_ioctl(FAR struct file *filep, int cmd, unsigned long arg) break; default: - ierr("ERROR: Unrecognized command: %ld\n", cmd); + ierr("ERROR: Unrecognized command: %d\n", cmd); ret = -ENOTTY; break; }