testing/ostest: fix Compiler Warning (level 1) C4716: 'function' must return a value

https://learn.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-1-c4716?view=msvc-170
Signed-off-by: chao an <anchao@xiaomi.com>
This commit is contained in:
chao an 2023-07-13 23:04:42 +08:00 committed by Xiang Xiao
parent 0a7c308f1b
commit b18cf9aab3

View File

@ -86,6 +86,8 @@ static int pthread_exit_main(int argc, char **argv)
printf("pthread_exit_main %u: ERROR: Still running\n", me);
exit(0);
return 0;
}
/****************************************************************************