summaryrefslogtreecommitdiff
path: root/test/rua-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/rua-test.c')
-rw-r--r--test/rua-test.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/rua-test.c b/test/rua-test.c
index 5aa3619..35b2183 100644
--- a/test/rua-test.c
+++ b/test/rua-test.c
@@ -43,7 +43,7 @@ static void *__print_menu(void *arg)
int test_num = 0;
int run_next = 1;
- while(run_next) {
+ while (run_next) {
printf("==========================================\n");
printf(" Basic test menu \n");
printf("==========================================\n");
@@ -257,8 +257,7 @@ int main()
mainloop = g_main_loop_new(NULL, FALSE);
int result = pthread_create(&g_thread, NULL, __print_menu, (void *)NULL);
- if (result < 0)
- {
+ if (result < 0) {
printf("pthread_create failed in initialize\n");
return 0;
}