mirror of
https://github.com/espressif/esp-idf.git
synced 2025-09-24 01:20:23 +00:00
make code conform to Wstrict-prototypes
Merges https://github.com/espressif/esp-idf/pull/2937
This commit is contained in:

committed by
Anton Maklakov

parent
afbaf74007
commit
74a459dd3d
@@ -244,9 +244,9 @@ typedef struct
|
||||
/** stop_socket_select which can be called from ISR; set only for the socket driver */
|
||||
void (*stop_socket_select_isr)(void *sem, BaseType_t *woken);
|
||||
/** end_select is called to stop the I/O multiplexing and deinitialize the environment created by start_select for the given VFS */
|
||||
void* (*get_socket_select_semaphore)();
|
||||
void* (*get_socket_select_semaphore)(void);
|
||||
/** get_socket_select_semaphore returns semaphore allocated in the socket driver; set only for the socket driver */
|
||||
void (*end_select)();
|
||||
void (*end_select)(void);
|
||||
} esp_vfs_t;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user