drivers/rc/dummy.c: Fix a syslog format

This commit is contained in:
YAMAMOTO Takashi
2020-11-23 13:11:25 +09:00
committed by Xiang Xiao
parent 3ebcd045b5
commit c1f8e270eb
+3 -1
View File
@@ -29,6 +29,7 @@
#include <nuttx/wqueue.h> #include <nuttx/wqueue.h>
#include <nuttx/clock.h> #include <nuttx/clock.h>
#include <debug.h> #include <debug.h>
#include <inttypes.h>
#include <stdio.h> #include <stdio.h>
#include <errno.h> #include <errno.h>
@@ -184,7 +185,8 @@ static int dummy_tx_ir(FAR struct lirc_lowerhalf_s *lower,
static int dummy_tx_scancode(FAR struct lirc_lowerhalf_s *lower, static int dummy_tx_scancode(FAR struct lirc_lowerhalf_s *lower,
FAR struct lirc_scancode *txbuf) FAR struct lirc_scancode *txbuf)
{ {
rcinfo("Dummy RC send scancode data:%u to device\n", txbuf->scancode); rcinfo("Dummy RC send scancode data:%" PRIu64 " to device\n",
txbuf->scancode);
return 0; return 0;
} }