Fix mistake in my last commit.
authorTor Lillqvist <tml@novell.com>
Mon, 15 Jan 2007 13:41:51 +0000 (13:41 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Mon, 15 Jan 2007 13:41:51 +0000 (13:41 +0000)
2007-01-15  Tor Lillqvist  <tml@novell.com>

* glib/gmain.h (struct _GPollFD): Fix mistake in my last commit.

svn path=/trunk/; revision=5271

ChangeLog
glib/gmain.h

index 288f1845e3de85fb603943a92184d5f7b6c6de3b..565939de0e9cf8b253b3e183e5aa74e0c3e3df06 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-01-15  Tor Lillqvist  <tml@novell.com>
+
+       * glib/gmain.h (struct _GPollFD): Fix mistake in my last commit.
+
 2005-01-15  Matthias Clasen  <mclasen@redhat.com>
 
        * glib/giochannel.c:
index 39f9515551ff55659954200e1d28c0491aa324bb..1d201dd842bf79a863d61e45b67d54ebbde0d14e 100644 (file)
@@ -120,7 +120,7 @@ typedef gint        (*GPollFunc)    (GPollFD *ufds,
 
 struct _GPollFD
 {
-#ifdef G_OS_WIN32 && GLIB_SIZEOF_VOID_P == 8
+#if defined (G_OS_WIN32) && GLIB_SIZEOF_VOID_P == 8
   gint64       fd;
 #else
   gint         fd;