graphics/nxterm/nxterm_kbdin.c: Fix a syslog format

This commit is contained in:
YAMAMOTO Takashi 2020-11-24 12:50:41 +09:00 committed by Xiang Xiao
parent b6217b23b6
commit 78c03c88bd

View File

@ -39,6 +39,7 @@
#include <nuttx/config.h>
#include <inttypes.h>
#include <fcntl.h>
#include <sched.h>
#include <assert.h>
@ -384,7 +385,7 @@ void nxterm_kbdin(NXTERM handle, FAR const uint8_t *buffer, uint8_t buflen)
char ch;
int ret;
ginfo("buflen=%d\n");
ginfo("buflen=%" PRId8 "\n", buflen);
DEBUGASSERT(handle);
/* Get the reference to the driver structure from the handle */