summaryrefslogtreecommitdiff
path: root/giowin32.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2000-08-31 21:58:59 +0000
committerTor Lillqvist <tml@src.gnome.org>2000-08-31 21:58:59 +0000
commitba8a71589d5b745bce7f4b85b7c5caeef82cb1b3 (patch)
tree37ea6da638da37b43a744f04ee8e2f8b6ffb3234 /giowin32.c
parent48b41a2f5f36507a78ff7f8f1b4d57393ee4ec7e (diff)
downloadglib-ba8a71589d5b745bce7f4b85b7c5caeef82cb1b3.tar.gz
glib.h No use for separate condition parameter.
2000-08-31 Tor Lillqvist <tml@iki.fi> * glib.h * giowin32.c (g_io_channel_win32_poll): No use for separate condition parameter.
Diffstat (limited to 'giowin32.c')
-rw-r--r--giowin32.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/giowin32.c b/giowin32.c
index 84c57276f..9db86d3ac 100644
--- a/giowin32.c
+++ b/giowin32.c
@@ -874,7 +874,6 @@ g_io_channel_win32_set_debug (GIOChannel *channel,
gint
g_io_channel_win32_poll (GPollFD *fds,
gint n_fds,
- GIOCondition condition,
gint timeout)
{
int i;
@@ -899,7 +898,7 @@ g_io_channel_win32_wait_for_condition (GIOChannel *channel,
pollfd.fd = (gint) win32_channel->data_avail_event;
pollfd.events = condition;
- return g_io_channel_win32_poll (&pollfd, 1, condition, timeout);
+ return g_io_channel_win32_poll (&pollfd, 1, timeout);
}
/* This variable and the functions below are present just to be