summaryrefslogtreecommitdiff
path: root/src/threads/BackgroundJob.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/threads/BackgroundJob.vala')
-rw-r--r--src/threads/BackgroundJob.vala2
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;
}
}