Skip to content

Commit 6850448

Browse files
committed
video/fb: fix compilation errors
enabling CONFIG_FB_HWCURSOR and CONFIG_FB_HWCURSORIMAGE causes a compile error: missing semicolon after a structure variable. Signed-off-by: zhanxiaoqi <zhanxiaoqi@bytedance.com>
1 parent 4257c55 commit 6850448

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • include/nuttx/video

include/nuttx/video/fb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ struct fb_cmap_s
654654
struct fb_cursorimage_s
655655
{
656656
fb_coord_t width; /* Width of the cursor image in pixels */
657-
fb_coord_t height /* Height of the cursor image in pixels */
657+
fb_coord_t height; /* Height of the cursor image in pixels */
658658
const uint8_t *image; /* Pointer to image data */
659659
};
660660
#endif

0 commit comments

Comments
 (0)