summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Shaw <joeshaw@novell.com>2003-02-23 03:36:20 +0000
committerJoe Shaw <joeshaw@novell.com>2003-02-23 03:36:20 +0000
commit32b4b2a2f6b4dc7b2ee07f1efb75ec8c871ca04b (patch)
tree9ab817bca2bdada58d852dd08823162f68609d2d
parent983374a7583b89e63e1c2e337a9e0b3927ceae03 (diff)
fix a warning
-rw-r--r--dbus/dbus-sysdeps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbus/dbus-sysdeps.c b/dbus/dbus-sysdeps.c
index bcfa15fc..8c0567ed 100644
--- a/dbus/dbus-sysdeps.c
+++ b/dbus/dbus-sysdeps.c
@@ -1424,7 +1424,7 @@ _dbus_poll (DBusPollFD *fds,
#else /* ! HAVE_POLL */
fd_set read_set, write_set, err_set;
- int max_fd;
+ int max_fd = 0;
int i;
struct timeval tv;
int ready;