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/util.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/util.h')
-rw-r--r-- | src/util.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,7 +8,7 @@ gpointer cmumble_find_by_id(GList *list, gsize member_offset, guint id); static inline struct cmumble_user * -find_user(struct cmumlbe *cm, uint32_t session_id) +find_user(struct cmumble *cm, uint32_t session_id) { return cmumble_find_by_id(cm->users, G_STRUCT_OFFSET(struct cmumble_user, session), @@ -16,7 +16,7 @@ find_user(struct cmumlbe *cm, uint32_t session_id) } static inline struct cmumble_channel * -find_channel(struct cmumlbe *cm, guint channel_id) +find_channel(struct cmumble *cm, guint channel_id) { return cmumble_find_by_id(cm->channels, G_STRUCT_OFFSET(struct cmumble_channel, id), |