diff options
Diffstat (limited to 'src/actions.c')
-rw-r--r-- | src/actions.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/actions.c b/src/actions.c index dde18ef..4620c0d 100644 --- a/src/actions.c +++ b/src/actions.c @@ -305,11 +305,10 @@ int run_HELP(UserOpt *opt, Conf *conf) { } switch(parser_get_action(list_get(opt->args), NULL)) { -#define X(ACTION) \ - case CKA_##ACTION: \ - get_possible_action_strings(tmp, CKA_##ACTION); \ - HELP("%s", tmp); \ - print_##ACTION##_help(); \ +#define X(ACTION) \ + case CKA_##ACTION: \ + HELP("%s", get_possible_action_strings(tmp, CKA_##ACTION)); \ + print_##ACTION##_help(); \ return 0; CK_ACTIONS #undef X |