diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-02-12 19:30:35 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-02-12 19:30:35 +0100 |
commit | b30b0e8cff7a3b4a0bb1199ea1a398d75d05b105 (patch) | |
tree | 7c20844896f16aca0862cbd6f6d010f9a81c0b70 /src/commands.c | |
parent | 81e0d7d65a55be7df908567da622e1e2f249ceec (diff) | |
download | cmumble-b30b0e8cff7a3b4a0bb1199ea1a398d75d05b105.tar.gz cmumble-b30b0e8cff7a3b4a0bb1199ea1a398d75d05b105.tar.bz2 cmumble-b30b0e8cff7a3b4a0bb1199ea1a398d75d05b105.zip |
Fix typo in cmumble struct name
Diffstat (limited to 'src/commands.c')
-rw-r--r-- | src/commands.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/commands.c b/src/commands.c index 9ca2d8a..5209504 100644 --- a/src/commands.c +++ b/src/commands.c @@ -9,7 +9,7 @@ #include <readline/history.h> static void -list_users(struct cmumlbe *cm, +list_users(struct cmumble *cm, int argc, char **argv) { struct cmumble_user *user = NULL; @@ -23,7 +23,7 @@ list_users(struct cmumlbe *cm, } static void -list_channels(struct cmumlbe *cm, +list_channels(struct cmumble *cm, int argc, char **argv) { struct cmumble_channel *channel = NULL; @@ -37,7 +37,7 @@ list_channels(struct cmumlbe *cm, } static void -quit(struct cmumlbe *cm, +quit(struct cmumble *cm, int argc, char **argv) { rl_already_prompted = 1; @@ -45,7 +45,7 @@ quit(struct cmumlbe *cm, } static void -clear(struct cmumlbe *cm, +clear(struct cmumble *cm, int argc, char **argv) { rl_clear_screen(0,0); @@ -54,7 +54,7 @@ clear(struct cmumlbe *cm, } static void -help(struct cmumlbe *cm, +help(struct cmumble *cm, int argc, char **argv) { int i; @@ -65,7 +65,7 @@ help(struct cmumlbe *cm, } static void -msg(struct cmumlbe *cm, +msg(struct cmumble *cm, int argc, char **argv) { MumbleProto__TextMessage message; @@ -143,7 +143,7 @@ complete(const char *in, int n) } void -cmumble_commands_init(struct cmumlbe *cm) +cmumble_commands_init(struct cmumble *cm) { cm->commands = commands; |