Fix build on 64bit platforms

This commit is contained in:
Tilman Keskinoz 2007-08-03 12:53:31 +00:00
parent 69a6dcaa2d
commit a724c87634
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=197020

View file

@ -0,0 +1,11 @@
--- inti/gconf/client.cc.orig 2007-08-03 14:48:40.000000000 +0200
+++ inti/gconf/client.cc 2007-08-03 14:49:08.000000000 +0200
@@ -147,7 +147,7 @@
while (next != 0)
{
- list.push_back((int)next->data);
+ list.push_back((intptr_t)next->data);
next = g_slist_next(next);
}