summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2008-08-04 18:46:59 +0000
committerTor Lillqvist <tml@src.gnome.org>2008-08-04 18:46:59 +0000
commit0e2384faa8778b91d502c228b4c5b7988d872959 (patch)
treeffb16b1ea662152b895277a2c7d5ab80783e033a /ChangeLog
parent722379caa9dfe30104221ccbc7b064678ecbf65d (diff)
glib/giowin32.c glib/gmain.c glib/gspawn-win32.c Change gssize casts
2008-08-04 Tor Lillqvist <tml@novell.com> * glib/giowin32.c * glib/gmain.c * glib/gspawn-win32.c * glib/gspawn-win32-helper.c: Change gssize casts introduced on 2008-07-28 to gintptr casts now that we have that. gssize is as such the same as gintptr on both 32- and 64-bit Windows, but the gintptr name indicates that it is used to hold pointers, i.e. also HANDLEs. svn path=/trunk/; revision=7306
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6ebd79f34..d35392aee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
2008-08-04 Tor Lillqvist <tml@novell.com>
+ * glib/giowin32.c
+ * glib/gmain.c
+ * glib/gspawn-win32.c
+ * glib/gspawn-win32-helper.c: Change gssize casts introduced on
+ 2008-07-28 to gintptr casts now that we have that. gssize is as
+ such the same as gintptr on both 32- and 64-bit Windows, but the
+ gintptr name indicates that it is used to hold pointers, i.e. also
+ HANDLEs.
+
* tests/testglib.c: Avoid warning on Win64 by using gintptr cast
instead if long cast.