mirror of
https://github.com/apache/nuttx.git
synced 2026-08-01 20:28:58 +00:00
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>
This commit is contained in:
parent
34fbaa15ee
commit
f9fae3ed32
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue