diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-11-25 04:10:33 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-11-25 04:10:33 +0100 |
commit | 4a3f1fdfe1eb3743564adcee35d5513224339260 (patch) | |
tree | 1bcc97c9bd5abcf181b9f19294a0f187ff8af103 /src/threads/BackgroundJob.vala | |
parent | 7152401783578b56343f578b4ec920998660de33 (diff) |
New upstream version 0.25.1upstream/0.25.1
Diffstat (limited to 'src/threads/BackgroundJob.vala')
-rw-r--r-- | src/threads/BackgroundJob.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/threads/BackgroundJob.vala b/src/threads/BackgroundJob.vala index 2188425..5d259e7 100644 --- a/src/threads/BackgroundJob.vala +++ b/src/threads/BackgroundJob.vala @@ -75,7 +75,7 @@ public abstract class BackgroundJob { return (int) other - (int) this; } - public static int compare_func(void *a, void *b) { + public static int compare_func(JobPriority a, JobPriority b) { return (int) b - (int) a; } } |