GNOME Bugzilla – Bug 102723
GTime should be a typedef of time_t
Last modified: 2004-12-22 21:47:04 UTC
Summary says it all, using typedef gint32 GTime; prevents the programmer from using GTime as a replacement for time_t in functions (like localtime_r) without typecasting. typedef time_t GTime; should probably be what is used. If time_t is gint32 universally, then this -Wall warning fix shouldn't break ABI compatibility (but I'm probably wrong)...
Created attachment 13396 [details] [review] A patch to fix this
time_t is definitely not universally 32bit. *** This bug has been marked as a duplicate of 101538 ***