Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/test_apps/iperf-cmd/main/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#include "iperf_cmd.h"

void my_report_func()
void my_report_func(void)
{
static int i = 0;
if (i == 0 ) {
Expand Down
2 changes: 1 addition & 1 deletion iperf-cmd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ This repository contains `iperf` command based esp-idf console.

```yaml
dependencies:
espressif/iperf_cmd:
espressif/iperf-cmd:
version: "^1.0.0"
```
- For more details refer [IDF Component Manager](https://docs.espressif.com/projects/idf-component-manager/en/latest/)
2 changes: 1 addition & 1 deletion iperf/iperf_report.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ static void iperf_print_connect_info(const iperf_report_t *report)
}
}

static void iperf_print_traffic_header()
static void iperf_print_traffic_header(void)
{
printf("\n[ ID] Interval\t\tTransfer\tBandwidth\n");
}
Expand Down
2 changes: 1 addition & 1 deletion iperf/linux_port/esp_timer_stub.c
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ void my_callback2(void* arg)
{
printf("Timer expired 2 \n");
}
int main()
int main(void)
{
#include <unistd.h>
esp_timer_handle_t timer;
Expand Down