boards/arm/samv7/samv71-xult/src/sam_ili9488.c: Fix a syslog format
This commit is contained in:
parent
0e81c2d95d
commit
2ceace2059
@ -663,7 +663,11 @@ static int sam_setwindow(FAR struct sam_dev_s *priv, sam_color_t row,
|
||||
uint16_t buffer[4];
|
||||
int ret;
|
||||
|
||||
lcdinfo("row=%d col=%d width=%d height=%d\n", row, col, width, height);
|
||||
lcdinfo("row=%jd col=%jd width=%jd height=%jd\n",
|
||||
(intmax_t)row,
|
||||
(intmax_t)col,
|
||||
(intmax_t)width,
|
||||
(intmax_t)height);
|
||||
|
||||
/* Set Column Address Position */
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user