diff options
author | Lennart Poettering <lennart@poettering.net> | 2005-01-21 00:16:08 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2005-01-21 00:16:08 +0000 |
commit | 0781d5363fb6fd723a2316fc7558aef6439b2f71 (patch) | |
tree | f6a942889c55230611d4472c21a7075a7c2fc609 /prioq-test.c | |
parent | d6e2dbabccb08970da991e6d2b0fda7a56d83e6f (diff) |
massive work
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@8 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'prioq-test.c')
-rw-r--r-- | prioq-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prioq-test.c b/prioq-test.c index 56cfbc1..a54c1ff 100644 --- a/prioq-test.c +++ b/prioq-test.c @@ -4,7 +4,7 @@ #include "prioq.h" -static gint compare(gpointer a, gpointer b) { +static gint compare(gconstpointer a, gconstpointer b) { gint i = GPOINTER_TO_INT(a), j = GPOINTER_TO_INT(b); return i < j ? -1 : (i > j ? 1 : 0); |