mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 15:36:17 +01:00
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:
parent
26a240fd10
commit
c6838ffaa1
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user