mirror of
https://github.com/apache/nuttx.git
synced 2026-05-21 13:13:08 +08:00
v9fs/client.h:fix array type has incomplete element type
Summary:
fix error:
v9fs/client.c: In function 'v9fs_client_walk':
v9fs/client.c:1462:16: error: array type has incomplete element type 'struct iovec'
1462 | struct iovec wiov[2];
| ^~~~
v9fs/client.c:1463:16: error: array type has incomplete element type 'struct iovec'
1463 | struct iovec riov[2];
| ^~~~
v9fs/client.c:1463:16: warning: unused variable 'riov' [-Wunused-variable]
v9fs/client.c:1462:16: warning: unused variable 'wiov' [-Wunused-variable]
1462 | struct iovec wiov[2];
| ^~~~
v9fs/client.c: In function 'v9fs_transport_done':
v9fs/client.c:1721:49: error: invalid use of undefined type 'struct iovec'
1721 | FAR struct v9fs_lerror_s *error = cookie->riov[0].iov_base;
| ^
v9fs/client.c:1721:52: error: invalid use of undefined type 'struct iovec'
1721 | FAR struct v9fs_lerror_s *error = cookie->riov[0].iov_base;
| ^
Signed-off-by: chenrun1 <chenrun1@xiaomi.com>
This commit is contained in:
committed by
Alan Carvalho de Assis
parent
fa7403db5a
commit
1e3e551a19
@@ -32,6 +32,7 @@
|
||||
#include <dirent.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/statfs.h>
|
||||
#include <sys/uio.h>
|
||||
|
||||
/****************************************************************************
|
||||
* Type Definitions
|
||||
|
||||
Reference in New Issue
Block a user