tests: avoid a couple compilation warnings

This commit is contained in:
Pierre Pronchery 2022-08-25 03:24:50 +02:00
parent a4081e2337
commit b6166825dc
2 changed files with 4 additions and 0 deletions

View File

@ -89,6 +89,8 @@ static int _usage(void)
/* main */
int main(int argc, char * argv[])
{
(void) argv;
if(argc != 1)
return _usage();
return (_sqlite2() == 0) ? 0 : 2;

View File

@ -89,6 +89,8 @@ static int _usage(void)
/* main */
int main(int argc, char * argv[])
{
(void) argv;
if(argc != 1)
return _usage();
return (_sqlite3() == 0) ? 0 : 2;