tests/*: fix control reaches end of non-void func

Prepare to set -std=gnu89 in a future commit, which will cause gcc warn
about "control reaches end of non-void function" in main().

Change-Id: I7c33cac30e5859060f083813d8433011f5eaf0d0
This commit is contained in:
Oliver Smith 2021-01-21 11:57:48 +01:00 committed by osmith
parent b3d4778efb
commit 55934c4754
2 changed files with 2 additions and 0 deletions

View File

@ -395,4 +395,5 @@ int main(int argc, char **argv)
test_16k_subchan();
test_8k_subchan();
test_unused_subchan();
return 0;
}

View File

@ -116,4 +116,5 @@ int main(int argc, char **argv)
tc_alloc();
tc_queue_length();
tc_eventfd();
return 0;
}