summaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorBenjamin Franzke <benjaminfranzke@googlemail.com>2012-02-12 19:30:35 +0100
committerBenjamin Franzke <benjaminfranzke@googlemail.com>2013-11-18 13:22:05 +0100
commitacd6eea934442be4514e2176b49d5d6e3d5eb6d8 (patch)
tree0b71968b73f1c61e392a5c68e091ebfac8079787 /src/util.h
parent269297401c5b63f3f462a66b2e7652e726ad605a (diff)
downloadcmumble-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.h b/src/util.h
index ec180be..6019fe5 100644
--- a/src/util.h
+++ b/src/util.h
@@ -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),