GNOME Bugzilla – Bug 349837
wrong initialization of gsm_protocol_data
Last modified: 2006-08-04 11:34:10 UTC
sparse says this: gdm-logout-action.c:71:9: warning: incorrect type in initializer (different base types) gdm-logout-action.c:71:9: expected char *auth_cookie gdm-logout-action.c:71:9: got int [signed] enum GdmLogoutAction [signed] [toplevel] GDM_LOGOUT_ACTION_NONE I think the attached patch will work?
Created attachment 70160 [details] [review] patch for the warning
should work, or you could just do static GdmProtocolData gdm_protocol_data; since it's static, it will be 0-filled anyway.
Commited on HEAD.