pki: Avoid naming conflict with global variables for passed arguments

This commit is contained in:
Tobias Brunner 2020-01-28 11:36:11 +01:00
parent d493dc18d6
commit ea1f4cd7a9
1 changed files with 1 additions and 1 deletions

View File

@ -243,7 +243,7 @@ int command_usage(char *error)
/**
* Show usage information
*/
static int help(int argc, char *argv[])
static int help(int c, char *v[])
{
return command_usage(NULL);
}