nrf5/drivers: Fixing parenthesis in ILI9341 __str__ print function.

This commit is contained in:
Glenn Ruben Bakke 2017-01-06 23:41:16 +01:00
parent ad4149cc80
commit a2e2f3c07e
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ STATIC void lcd_ili9341_print(const mp_print_t *print, mp_obj_t o, mp_print_kind
self->pin_dc->port,
self->pin_dc->pin);
mp_printf(print, " FB(width=%u, height=%u, dir=%u\n",
mp_printf(print, " FB(width=%u, height=%u, dir=%u))\n",
self->framebuffer->width,
self->framebuffer->height);
}