diff options
author | Haru <haru@dotalux.com> | 2015-09-15 16:12:44 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-10-11 00:24:21 +0200 |
commit | 80bbb08f18b9a99813adb08b1d5c14fd7f81e1a2 (patch) | |
tree | a575cd8c8412fd3dac522ba7c90c03522df945c8 /src/common/console.h | |
parent | b1dd87824f4fa0bca7817a030f71a7aca2dd7c6e (diff) | |
download | hercules-80bbb08f18b9a99813adb08b1d5c14fd7f81e1a2.tar.gz hercules-80bbb08f18b9a99813adb08b1d5c14fd7f81e1a2.tar.bz2 hercules-80bbb08f18b9a99813adb08b1d5c14fd7f81e1a2.tar.xz hercules-80bbb08f18b9a99813adb08b1d5c14fd7f81e1a2.zip |
Changed console->input->cmds to a VECTOR and renamed to console->input->commands
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common/console.h')
-rw-r--r-- | src/common/console.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/console.h b/src/common/console.h index 35a83da52..50e40506c 100644 --- a/src/common/console.h +++ b/src/common/console.h @@ -53,8 +53,7 @@ struct console_input_interface { racond *ptcond;/* parse thread cond */ /* */ VECTOR_DECL(struct CParseEntry *) command_list; - struct CParseEntry **cmds; - unsigned int cmd_count; + VECTOR_DECL(struct CParseEntry *) commands; /* */ Sql *SQL; /* */ |