summaryrefslogtreecommitdiff
path: root/auto_tests/set_status_message_test.c
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-10-08 21:05:14 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-10-09 17:33:37 +0000
commit605dfe882c52bfad4dee9678a69e4b816d93431d (patch)
tree10432adc5d3716cb28b833c6e156218b67c23494 /auto_tests/set_status_message_test.c
parent77e025fae48a4f9cf6cf19a359b6c423545f3cc7 (diff)
Consistently use camel case enum names.
Including in tests and implementation files.
Diffstat (limited to 'auto_tests/set_status_message_test.c')
-rw-r--r--auto_tests/set_status_message_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auto_tests/set_status_message_test.c b/auto_tests/set_status_message_test.c
index 1ef8ae56..9cf26754 100644
--- a/auto_tests/set_status_message_test.c
+++ b/auto_tests/set_status_message_test.c
@@ -72,7 +72,7 @@ static void test_set_status_message(void)
72 72
73 printf("tox clients connected took %lu seconds\n", (unsigned long)(time(nullptr) - con_time)); 73 printf("tox clients connected took %lu seconds\n", (unsigned long)(time(nullptr) - con_time));
74 74
75 TOX_ERR_SET_INFO err_n; 75 Tox_Err_Set_Info err_n;
76 tox_callback_friend_status_message(tox2, status_callback); 76 tox_callback_friend_status_message(tox2, status_callback);
77 bool ret = tox_self_set_status_message(tox1, (const uint8_t *)STATUS_MESSAGE, sizeof(STATUS_MESSAGE), 77 bool ret = tox_self_set_status_message(tox1, (const uint8_t *)STATUS_MESSAGE, sizeof(STATUS_MESSAGE),
78 &err_n); 78 &err_n);