mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-09 12:35:28 +00:00
tools: Mass fixing of empty prototypes (for -Wstrict-prototypes)
This commit is contained in:
@@ -70,7 +70,7 @@ esp_err_t esp_console_init(const esp_console_config_t *config)
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
esp_err_t esp_console_deinit()
|
||||
esp_err_t esp_console_deinit(void)
|
||||
{
|
||||
if (!s_tmp_line_buf) {
|
||||
return ESP_ERR_INVALID_STATE;
|
||||
@@ -232,7 +232,7 @@ static int help_command(int argc, char **argv)
|
||||
}
|
||||
|
||||
|
||||
esp_err_t esp_console_register_help_command()
|
||||
esp_err_t esp_console_register_help_command(void)
|
||||
{
|
||||
esp_console_cmd_t command = {
|
||||
.command = "help",
|
||||
|
Reference in New Issue
Block a user