fix warnings

This commit is contained in:
Takashi Kojo 2018-04-28 06:06:45 +09:00
parent 3e9028387f
commit e69af98a7e
1 changed files with 2 additions and 1 deletions

View File

@ -29,10 +29,11 @@ typedef struct func_args {
int return_code;
} func_args;
void wolfcrypt_test(func_args args);
void main(void)
{
func_args args = { 1 };
logging_test();
printf("Start wolfCrypt Test\n");
wolfcrypt_test(args);
printf("End wolfCrypt Test\n");