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 e2ddb55101c nuttx/nx: compilation error occurs
e2ddb55101c is described below
commit e2ddb55101cc1c34149ae8940a3c340b31bce7ef
Author: zhanxiaoqi <[email protected]>
AuthorDate: Mon Apr 13 20:29:00 2026 +0800
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 <[email protected]>
---
include/nuttx/nx/nxmu.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/nuttx/nx/nxmu.h b/include/nuttx/nx/nxmu.h
index da708e4cbd7..8066ec1fe6b 100644
--- a/include/nuttx/nx/nxmu.h
+++ b/include/nuttx/nx/nxmu.h
@@ -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