From f9fae3ed327dde931382f49df2c0f84ff2974109 Mon Sep 17 00:00:00 2001 From: zhanxiaoqi Date: Mon, 13 Apr 2026 16:00:24 +0800 Subject: [PATCH] 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 --- include/nuttx/video/fb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/nuttx/video/fb.h b/include/nuttx/video/fb.h index 039ee561fe5..cd7dfabf713 100644 --- a/include/nuttx/video/fb.h +++ b/include/nuttx/video/fb.h @@ -654,7 +654,7 @@ struct fb_cmap_s struct fb_cursorimage_s { fb_coord_t width; /* Width of the cursor image in pixels */ - fb_coord_t height /* Height of the cursor image in pixels */ + fb_coord_t height; /* Height of the cursor image in pixels */ const uint8_t *image; /* Pointer to image data */ }; #endif