Skip to content

Commit

Permalink
[TEST]Fixed function names in net_handler_client.c
Browse files Browse the repository at this point in the history
Former-commit-id: 36674ad
  • Loading branch information
DanielMolina24 authored and AVSurfer123 committed Aug 27, 2020
1 parent af3136e commit c9ffe88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/cli/net_handler_cli.c
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ void prompt_device_data() {
int num_devices = 0;
uint8_t dev_type;
long long int temp;
dev_data_t data[MAX_DEVICES];
dev_subs_t data[MAX_DEVICES];
device_t* curr_dev;

// first get the list of device names
Expand Down Expand Up @@ -330,7 +330,7 @@ void prompt_device_data() {

// send
printf("Sending Device Data message!\n\n");
send_device_data(data, num_devices);
send_device_subs(data, num_devices);

// free everything
for (int i = 0; i < num_devices; i++) {
Expand Down

0 comments on commit c9ffe88

Please sign in to comment.