mirror of
https://github.com/apache/nuttx.git
synced 2026-06-07 01:05:54 +08:00
7f018e7898
The use of uint64_t primitive type in NFS structures forces the compiler to align data on an 8-byte boundary. As a result of this, unwanted gaps being created, which causes NFS to fail. (e.g., nfs_read/initialize the request) Using nfsuint64 instead of uint64_t fixes this issue.