make code conform to Wstrict-prototypes

Merges https://github.com/espressif/esp-idf/pull/2937
This commit is contained in:
Michael Zimmermann
2019-01-11 09:43:11 +01:00
committed by Anton Maklakov
parent afbaf74007
commit 74a459dd3d
4 changed files with 6 additions and 6 deletions

View File

@@ -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;