Skip to content

Commit d29c7ea

Browse files
committed
Fixes missing ;
Fixes #182
1 parent 92e7e9c commit d29c7ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext_mod/lcd_bus/esp32_src/rgb_bus.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
rgb_panel_t *rgb_panel = __containerof(panel, rgb_panel_t, base);
5757
mp_lcd_rgb_bus_obj_t *self = (mp_lcd_rgb_bus_obj_t *)user_ctx;
5858

59-
void *curr_buf = rgb_panel->fbs[rgb_panel->cur_fb_index]
59+
void *curr_buf = rgb_panel->fbs[rgb_panel->cur_fb_index];
6060

6161
if (self->view2 != NULL && self->last_buf != curr_buf) {
6262
self->last_buf = curr_buf;

0 commit comments

Comments
 (0)