diff options
Diffstat (limited to 'src/actionparser.h')
-rw-r--r-- | src/actionparser.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/actionparser.h b/src/actionparser.h index 1c4e539..01f32a5 100644 --- a/src/actionparser.h +++ b/src/actionparser.h @@ -22,6 +22,8 @@ #ifndef ACTIONPARSER_H #define ACTIONPARSER_H +#include "cklist.h" + #define CK_ACTIONS \ X(INIT) \ X(ADD) \ @@ -62,8 +64,7 @@ struct UserOptions { ParseError err; CkAction action; char *confDir; - int argc; - char *argv[10]; // action's options + cklist *args; }; |