nuttx/nx: compilation error occurs

Enabling CONFIG_NX_HWCURSORIMAGE or CONFIG_NX_SWCURSOR causes a compile error due to a missing semicolon after a structure variable.

Signed-off-by: zhanxiaoqi <zhanxiaoqi@bytedance.com>
This commit is contained in:
zhanxiaoqi
2026-04-13 20:29:00 +08:00
committed by Xiang Xiao
parent 143938777a
commit e2ddb55101
+1 -1
View File
@@ -300,7 +300,7 @@ struct nxsvrmsg_curenable_s
struct nxsvrmsg_curimage_s
{
uint32_t msgid; /* NX_SVRMSG_CURSOR_IMAGE */
struct nx_cursorimage_s image /* Describes the cursor image */
struct nx_cursorimage_s image; /* Describes the cursor image */
};
#endif