summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2015-05-21 12:00:41 +0200
committerBadlop <badlop@process-one.net>2015-05-21 12:00:41 +0200
commit3b24923458397fa19361490c25d1a6b84013421e (patch)
treefe153dd192688151f752f67502c09c5b338b8bea /include
parentMerge pull request #573 from sezuan/fix_odbc (diff)
Fix dialyzer warning in mod_muc_admin:206
Diffstat (limited to 'include')
-rw-r--r--include/mod_muc_room.hrl4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mod_muc_room.hrl b/include/mod_muc_room.hrl
index 6f170269..5fabbb9e 100644
--- a/include/mod_muc_room.hrl
+++ b/include/mod_muc_room.hrl
@@ -110,8 +110,8 @@
-record(muc_online_users, {us = {<<>>, <<>>} :: {binary(), binary()},
resource = <<>> :: binary() | '_',
- room = <<>> :: binary() | '_',
- host = <<>> :: binary() | '_'}).
+ room = <<>> :: binary() | '_' | '$1',
+ host = <<>> :: binary() | '_' | '$2'}).
-type muc_online_users() :: #muc_online_users{}.