Closed GoogleCodeExporter closed 9 years ago
Yes this warning has been nagging me for a while, but I couldn't fix it. It
seems that the glib macro GPOINTER_TO_INT actually does not work on all
platforms. It attempts to convert a (void *) to an (int), but some compilers
don't like it. I finally found a fix:
replace GPOINTER_TO_INT(x) with GPOINTER_TO_INT((char *)(x))
I still have to check if it works on all platforms.
Original comment by L...@gmx.com
on 16 May 2013 at 10:38
This is fixed now. Closing the issue.
Original comment by L...@gmx.com
on 12 Sep 2013 at 11:58
Original issue reported on code.google.com by
ludovic....@gmail.com
on 15 May 2013 at 11:48