tests bsim ccc_store: Fix main return
Since 3a197934fc
main() should be int main(void) instead of void main(void)
Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
This commit is contained in:
parent
c0e2b97948
commit
6d0aa678ef
1 changed files with 2 additions and 1 deletions
|
@ -81,7 +81,8 @@ struct bst_test_list *test_ccc_store_install(struct bst_test_list *tests)
|
|||
|
||||
bst_test_install_t test_installers[] = {test_ccc_store_install, NULL};
|
||||
|
||||
void main(void)
|
||||
int main(void)
|
||||
{
|
||||
bst_main();
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue