summary refs log tree commit diff stats
path: root/src/common/plugin.c
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-10-30 07:31:33 +0100
committerBerke Viktor <bviktor@hexchat.org>2012-10-30 07:31:33 +0100
commita5ab455b3414226ef03869eab9e7eeb01142a916 (patch)
treee2051671a7e00a3f3bd7cade0f5a76756bdf2a3b /src/common/plugin.c
parent4b7c7c2bb16f6278036f5aee6fb0b2c8f5ce38f2 (diff)
Forgot this one
Diffstat (limited to 'src/common/plugin.c')
-rw-r--r--src/common/plugin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/plugin.c b/src/common/plugin.c
index 2e30b955..b2b79386 100644
--- a/src/common/plugin.c
+++ b/src/common/plugin.c
@@ -712,11 +712,11 @@ plugin_fd_cb (GIOChannel *source, GIOCondition condition, xchat_hook *hook)
 	typedef int (xchat_fd_cb2) (int fd, int flags, void *user_data, GIOChannel *);
 
 	if (condition & G_IO_IN)
-		flags |= XCHAT_FD_READ;
+		flags |= HEXCHAT_FD_READ;
 	if (condition & G_IO_OUT)
-		flags |= XCHAT_FD_WRITE;
+		flags |= HEXCHAT_FD_WRITE;
 	if (condition & G_IO_PRI)
-		flags |= XCHAT_FD_EXCEPTION;
+		flags |= HEXCHAT_FD_EXCEPTION;
 
 	ret = ((xchat_fd_cb2 *)hook->callback) (hook->pri, flags, hook->userdata, source);