Skip to content

Commit a20ab62

Browse files
shutting to shuting and app to App (#410)
* shutting to shuting and app to App * RX to Rx
1 parent d57ba06 commit a20ab62

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

tests/tools/TestApp/rx_audio_app.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ int main(int argc, char *argv[]) {
3535
char *conn_cfg_file = argv[2];
3636
char *out_filename = argv[3];
3737

38-
LOG("[RX] Launching RX App");
38+
LOG("[RX] Launching Rx App");
3939
LOG("[RX] Reading client configuration...");
4040
client_cfg = input_parse_file_to_string(client_cfg_file);
4141
LOG("[RX] Reading connection configuration...");

tests/tools/TestApp/rx_blob_app.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ int main(int argc, char *argv[]) {
3535
char *conn_cfg_file = argv[2];
3636
char *out_filename = argv[3];
3737

38-
LOG("[RX] Launching RX App");
38+
LOG("[RX] Launching Rx App");
3939
LOG("[RX] Reading client configuration...");
4040
client_cfg = input_parse_file_to_string(client_cfg_file);
4141
LOG("[RX] Reading connection configuration...");
@@ -60,11 +60,11 @@ int main(int argc, char *argv[]) {
6060
safe_exit:
6161
LOG("[RX] dropping connection to media-proxy...");
6262
if (connection) {
63-
LOG("[RX] Shuting down connection");
63+
LOG("[RX] Shutting down connection");
6464
mesh_delete_connection(&connection);
6565
}
6666
if (client) {
67-
LOG("[RX] Shuting down client");
67+
LOG("[RX] Shutting down client");
6868
mesh_delete_client(&client);
6969
}
7070
free(client_cfg);

tests/tools/TestApp/rx_video_app.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ int main(int argc, char *argv[]) {
3535
char *conn_cfg_file = argv[2];
3636
char *out_filename = argv[3];
3737

38-
LOG("[RX] Launching RX App");
38+
LOG("[RX] Launching Rx App");
3939
LOG("[RX] Reading client configuration...");
4040
client_cfg = input_parse_file_to_string(client_cfg_file);
4141
LOG("[RX] Reading connection configuration...");
@@ -60,11 +60,11 @@ int main(int argc, char *argv[]) {
6060
safe_exit:
6161
LOG("[RX] dropping connection to media-proxy...");
6262
if (connection) {
63-
LOG("[RX] Shuting down connection");
63+
LOG("[RX] Shutting down connection");
6464
mesh_delete_connection(&connection);
6565
}
6666
if (client) {
67-
LOG("[RX] Shuting down client");
67+
LOG("[RX] Shutting down client");
6868
mesh_delete_client(&client);
6969
}
7070
free(client_cfg);

tests/tools/TestApp/tx_audio_app.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ int main(int argc, char **argv) {
3636
char *conn_cfg_file = argv[2];
3737
char *video_file = argv[3];
3838

39-
LOG("[TX] Launching TX app");
39+
LOG("[TX] Launching Tx App");
4040

4141
LOG("[TX] Reading client configuration...");
4242
client_cfg = input_parse_file_to_string(client_cfg_file);
@@ -91,11 +91,11 @@ int main(int argc, char **argv) {
9191
}
9292

9393
safe_exit:
94-
LOG("[TX] Shuting down connection");
94+
LOG("[TX] Shutting down connection");
9595
if (connection) {
9696
mesh_delete_connection(&connection);
9797
}
98-
LOG("[TX] Shuting down client");
98+
LOG("[TX] Shutting down client");
9999
if (client) {
100100
mesh_delete_client(&client);
101101
}

tests/tools/TestApp/tx_blob_app.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ int main(int argc, char **argv) {
3636
char *conn_cfg_file = argv[2];
3737
char *video_file = argv[3];
3838

39-
LOG("[TX] Launching TX app");
39+
LOG("[TX] Launching Tx App");
4040

4141
LOG("[TX] Reading client configuration...");
4242
client_cfg = input_parse_file_to_string(client_cfg_file);
@@ -83,11 +83,11 @@ int main(int argc, char **argv) {
8383
}
8484
}
8585
safe_exit:
86-
LOG("[TX] Shuting down connection");
86+
LOG("[TX] Shutting down connection");
8787
if (connection) {
8888
mesh_delete_connection(&connection);
8989
}
90-
LOG("[TX] Shuting down client");
90+
LOG("[TX] Shutting down client");
9191
if (client) {
9292
mesh_delete_client(&client);
9393
}

tests/tools/TestApp/tx_video_app.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ int main(int argc, char **argv) {
3636
char *conn_cfg_file = argv[2];
3737
char *video_file = argv[3];
3838

39-
LOG("[TX] Launching TX app");
39+
LOG("[TX] Launching Tx App");
4040

4141
LOG("[TX] Reading client configuration...");
4242
client_cfg = input_parse_file_to_string(client_cfg_file);
@@ -91,11 +91,11 @@ int main(int argc, char **argv) {
9191
}
9292

9393
safe_exit:
94-
LOG("[TX] Shuting down connection");
94+
LOG("[TX] Shutting down connection");
9595
if (connection) {
9696
mesh_delete_connection(&connection);
9797
}
98-
LOG("[TX] Shuting down client");
98+
LOG("[TX] Shutting down client");
9999
if (client) {
100100
mesh_delete_client(&client);
101101
}

0 commit comments

Comments
 (0)