diff options
Diffstat (limited to 'include/ctables.h')
-rw-r--r-- | include/ctables.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/ctables.h b/include/ctables.h index 5ca5e13b3..ab39bf5f3 100644 --- a/include/ctables.h +++ b/include/ctables.h @@ -27,17 +27,17 @@ typedef void (handlerfunc) (char**, int, userrec*); class command_t : public classbase { public: - /** Command name - */ + /** Command name + */ char command[MAXBUF]; /** Handler function as in typedef - */ + */ handlerfunc *handler_function; /** User flags needed to execute the command or 0 */ char flags_needed; - /** Minimum number of parameters command takes - */ + /** Minimum number of parameters command takes + */ int min_params; /** used by /stats m */ |