Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Jul 20, 2023
1 parent b520cde commit 1bac593
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion custom_tests/tox_local_lan_only_test_01.c
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ int main(void)
set_cb(tox1, tox2);

tox_iterate(tox1, (void *)&num1);
tox_iterate(tox2, (void *)&num1);
tox_iterate(tox2, (void *)&num2);

// ----------- wait for friends to come online -----------
Tox_Err_Friend_Add err1;
Expand Down
2 changes: 1 addition & 1 deletion custom_tests/tox_udp_connection_test_01.c
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ int main(void)
set_cb(tox1, tox2);

tox_iterate(tox1, (void *)&num1);
tox_iterate(tox2, (void *)&num1);
tox_iterate(tox2, (void *)&num2);

// ----------- wait for friends to come online -----------
Tox_Err_Friend_Add err1;
Expand Down
2 changes: 1 addition & 1 deletion custom_tests/toxav_msi_stress_test_01.c
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,7 @@ int main(void)
set_cb(tox1, tox2, toxav1, toxav2);

tox_iterate(tox1, (void *)&num1);
tox_iterate(tox2, (void *)&num1);
tox_iterate(tox2, (void *)&num2);

pthread_t tid[8];
toxav_video_thread_stop = 0;
Expand Down
2 changes: 1 addition & 1 deletion custom_tests/toxav_ts_sync_test_01.c
Original file line number Diff line number Diff line change
Expand Up @@ -1160,7 +1160,7 @@ int main(void)
set_cb(tox1, tox2, toxav1, toxav2);

tox_iterate(tox1, (void *)&num1);
tox_iterate(tox2, (void *)&num1);
tox_iterate(tox2, (void *)&num2);

pthread_t tid[8];
toxav_video_thread_stop = 0;
Expand Down
2 changes: 1 addition & 1 deletion custom_tests/toxav_ts_sync_test_02.c
Original file line number Diff line number Diff line change
Expand Up @@ -1213,7 +1213,7 @@ int main(void)
set_cb(tox1, tox2, toxav1, toxav2);

tox_iterate(tox1, (void *)&num1);
tox_iterate(tox2, (void *)&num1);
tox_iterate(tox2, (void *)&num2);

pthread_t tid[8];
toxav_video_thread_stop = 0;
Expand Down

0 comments on commit 1bac593

Please sign in to comment.