Merge branch 'bugfix/strict_prototypes' into 'master'

Enable strict prototypes checks

Closes IDFGH-757

See merge request espressif/esp-idf!4546
This commit is contained in:
Angus Gratton
2019-08-05 09:38:39 +08:00
530 changed files with 1422 additions and 1387 deletions

View File

@@ -62,7 +62,7 @@ static void event_handler(void* arg, esp_event_base_t event_base,
}
}
void wifi_init_sta()
void wifi_init_sta(void)
{
s_wifi_event_group = xEventGroupCreate();
@@ -95,7 +95,7 @@ void wifi_init_sta()
* See local_ctrl_service.c for implementation */
extern void start_esp_local_ctrl_service(void);
void app_main()
void app_main(void)
{
//Initialize NVS
esp_err_t ret = nvs_flash_init();