diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-02-12 19:30:35 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-11-18 13:22:05 +0100 |
commit | acd6eea934442be4514e2176b49d5d6e3d5eb6d8 (patch) | |
tree | 0b71968b73f1c61e392a5c68e091ebfac8079787 /src/cmumble.h | |
parent | 269297401c5b63f3f462a66b2e7652e726ad605a (diff) | |
download | cmumble-acd6eea934442be4514e2176b49d5d6e3d5eb6d8.tar.gz cmumble-acd6eea934442be4514e2176b49d5d6e3d5eb6d8.tar.bz2 cmumble-acd6eea934442be4514e2176b49d5d6e3d5eb6d8.zip |
Fix typo in cmumble struct name
Diffstat (limited to 'src/cmumble.h')
-rw-r--r-- | src/cmumble.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cmumble.h b/src/cmumble.h index cc40149..1b336d8 100644 --- a/src/cmumble.h +++ b/src/cmumble.h @@ -12,9 +12,9 @@ #include "audio.h" #include "commands.h" -typedef void (*callback_t)(ProtobufCMessage *msg, struct cmumlbe *); +typedef void (*callback_t)(ProtobufCMessage *msg, struct cmumble *); -struct cmumlbe { +struct cmumble { struct cmumble_connection con; struct cmumble_io io; struct cmumble_audio audio; @@ -72,6 +72,6 @@ enum udp_message_target { }; void -cmumble_protocol_init(struct cmumlbe *cm); +cmumble_protocol_init(struct cmumble *cm); #endif |