This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new f9fae3ed327 video/fb: fix compilation errors
f9fae3ed327 is described below
commit f9fae3ed327dde931382f49df2c0f84ff2974109
Author: zhanxiaoqi <[email protected]>
AuthorDate: Mon Apr 13 16:00:24 2026 +0800
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 <[email protected]>
---
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