
23 Nov
2015
23 Nov
'15
5:08 p.m.
On Fri, Nov 20, 2015 at 09:06:30PM +0000, Zeeshan Ali (Khattak) wrote:
Drop usage of deprecated GSimpleAsyncResult API. ---
A Changes since v1 section would be nice as this patch is a bit big.
+typedef struct { + guint flags; +} DomainWakeupData; + +static void domain_wakeup_data_free(DomainWakeupData *data) +{ + g_slice_free(DomainWakeupData, data); +} +
Any reason for not using GINT_TO_POINTER? My feeling from the previous thread was that you were going to do that. Christophe