summaryrefslogtreecommitdiff
path: root/src/irc/core/irc-channels.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/irc/core/irc-channels.h')
-rw-r--r--src/irc/core/irc-channels.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/irc/core/irc-channels.h b/src/irc/core/irc-channels.h
index 9a331082..b4040bf5 100644
--- a/src/irc/core/irc-channels.h
+++ b/src/irc/core/irc-channels.h
@@ -4,14 +4,12 @@
#include "channels.h"
#include "irc-servers.h"
-#define IS_IRC_CHANNEL(channel) \
- ((channel) != NULL && \
- module_find_id("IRC CHANNEL", \
- ((IRC_CHANNEL_REC *) (channel))->chat_type) != -1)
-
/* Returns IRC_CHANNEL_REC if it's IRC channel, NULL if it isn't. */
#define IRC_CHANNEL(channel) \
- (IS_IRC_CHANNEL(channel) ? (IRC_CHANNEL_REC *) (channel) : NULL)
+ MODULE_CHECK_CAST(channel, IRC_CHANNEL_REC, chat_type, "IRC CHANNEL")
+
+#define IS_IRC_CHANNEL(channel) \
+ (IRC_CHANNEL(channel) ? TRUE : FALSE)
#define STRUCT_SERVER_REC IRC_SERVER_REC
typedef struct {