arch/arm/src/sama5/sam_tsd.c: Fix syslog formats

This commit is contained in:
YAMAMOTO Takashi 2020-12-05 09:16:13 +09:00 committed by Xiang Xiao
parent 25ea93cb4a
commit 29400f0e38

View File

@ -51,6 +51,7 @@
#include <sys/types.h>
#include <inttypes.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
@ -527,7 +528,7 @@ static void sam_tsd_bottomhalf(void *arg)
/* Handle the change from pen down to pen up */
iinfo("pending: %08x pendown: %d contact: %d\n",
iinfo("pending: %08" PRIx32 " pendown: %d contact: %d\n",
pending, pendown, priv->sample.contact);
if (!pendown)
@ -634,7 +635,10 @@ static void sam_tsd_bottomhalf(void *arg)
if (xraw == 0 || xraw >= xscale || yraw == 0 || yraw > yscale)
{
iwarn("WARNING: Discarding: x %d:%d y %d:%d\n", xraw, xscale);
iwarn("WARNING: Discarding: x %" PRId32 ":%" PRId32
" y %" PRId32 ":%" PRId32 "\n",
xraw, xscale,
yraw, yscale);
goto ignored;
}