GNOME Bugzilla – Bug 65367
64bit (alpha) Issues with GType change
Last modified: 2011-02-18 15:47:43 UTC
In several places the code uses the GUINT_TO_POINTER and GPOINTER_TO_UINT macros to convert to/from GType and gpointer. This is wrong as it truncates the pointer sized GType. Also when printing out a GType the code used %u format which is no longer valid, I changed this to %lu and cast to gulong, which is the only sane/safe way to do it. Patch is attached.
Created attachment 6093 [details] [review] Patch to fix 64bit issues with GType
Did this get applied yet?