Skip to content

Commit

Permalink
Merge pull request #138 from cconlon/cluFuncsArg
Browse files Browse the repository at this point in the history
Add missing void arg to functions in clu_funcs.c
  • Loading branch information
douzzer authored Dec 19, 2023
2 parents 3d6db6c + 747da53 commit 25c3b12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tools/clu_funcs.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ static const struct option crypt_algo_options[] = {
/*
* generic help function
*/
void wolfCLU_help()
void wolfCLU_help(void)
{ WOLFCLU_LOG(WOLFCLU_L0, " ");
WOLFCLU_LOG(WOLFCLU_L0, "-help Help, print out this help menu");
WOLFCLU_LOG(WOLFCLU_L0, " ");
Expand Down Expand Up @@ -227,7 +227,7 @@ void wolfCLU_verboseHelp(void)
/*
* Encrypt Usage
*/
void wolfCLU_encryptHelp()
void wolfCLU_encryptHelp(void)
{
WOLFCLU_LOG(WOLFCLU_L0, "\nAvailable En/De crypt Algorithms with current configure "
"settings.\n");
Expand Down

0 comments on commit 25c3b12

Please sign in to comment.