gtask: Fix a signed/unsigned integer comparison

The GSource times assigned to creation_time are always signed.

https://bugzilla.gnome.org/show_bug.cgi?id=736806
This commit is contained in:
Philip Withnall 2014-09-17 15:07:25 +01:00
parent 26a240fd10
commit c6838ffaa1

View File

@ -540,7 +540,7 @@ struct _GTask {
GDestroyNotify task_data_destroy;
GMainContext *context;
guint64 creation_time;
gint64 creation_time;
gint priority;
GCancellable *cancellable;
gboolean check_cancellable;