Skip to content

Commit 25c3b12

Browse files
authored
Merge pull request #138 from cconlon/cluFuncsArg
Add missing void arg to functions in clu_funcs.c
2 parents 3d6db6c + 747da53 commit 25c3b12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/clu_funcs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ static const struct option crypt_algo_options[] = {
5959
/*
6060
* generic help function
6161
*/
62-
void wolfCLU_help()
62+
void wolfCLU_help(void)
6363
{ WOLFCLU_LOG(WOLFCLU_L0, " ");
6464
WOLFCLU_LOG(WOLFCLU_L0, "-help Help, print out this help menu");
6565
WOLFCLU_LOG(WOLFCLU_L0, " ");
@@ -227,7 +227,7 @@ void wolfCLU_verboseHelp(void)
227227
/*
228228
* Encrypt Usage
229229
*/
230-
void wolfCLU_encryptHelp()
230+
void wolfCLU_encryptHelp(void)
231231
{
232232
WOLFCLU_LOG(WOLFCLU_L0, "\nAvailable En/De crypt Algorithms with current configure "
233233
"settings.\n");

0 commit comments

Comments
 (0)