mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-09 20:41:14 +00:00
fix(linux): fix build errors and warnings, remove ignore file
This commit is contained in:
@@ -44,7 +44,7 @@ struct event
|
||||
bool event_triggered;
|
||||
};
|
||||
|
||||
struct event * event_create()
|
||||
struct event * event_create(void)
|
||||
{
|
||||
struct event * ev = malloc( sizeof( struct event ) );
|
||||
|
||||
|
@@ -39,7 +39,7 @@
|
||||
|
||||
struct event;
|
||||
|
||||
struct event * event_create();
|
||||
struct event * event_create(void);
|
||||
void event_delete( struct event * );
|
||||
bool event_wait( struct event * ev );
|
||||
bool event_wait_timed( struct event * ev,
|
||||
|
Reference in New Issue
Block a user