system/cle/cle.c: Fix syslog formats

This commit is contained in:
YAMAMOTO Takashi 2020-11-24 07:03:51 +09:00 committed by Xiang Xiao
parent 5065d470ce
commit 69da172c5f

View File

@ -39,6 +39,7 @@
#include <nuttx/config.h>
#include <inttypes.h>
#include <stdarg.h>
#include <stdint.h>
#include <stdbool.h>
@ -553,7 +554,7 @@ static int cle_getcursor(FAR struct cle_s *priv, FAR uint16_t *prow,
/* ...we are done */
cleinfo("row=%ld column=%ld\n", row, column);
cleinfo("row=%" PRId32 " column=%" PRId32 "\n", row, column);
/* Make sure that the values are within range */
@ -758,7 +759,7 @@ static void cle_showtext(FAR struct cle_s *priv)
static void cle_insertch(FAR struct cle_s *priv, char ch)
{
cleinfo("curpos=%ld ch=%c[%02x]\n", priv->curpos,
cleinfo("curpos=%" PRId16 " ch=%c[%02x]\n", priv->curpos,
isprint(ch) ? ch : '.', ch);
/* Make space in the buffer for the new character */