summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-08-25 18:45:36 +0000
committerLennart Poettering <lennart@poettering.net>2006-08-25 18:45:36 +0000
commit7c834d2011923511da00eaf4779d0cfefa070162 (patch)
tree5d8b64a078046788f73ea5bec9c87a329ec45a99
parent82aabd487bd00b79147ee23f4f76d692fdd0ced3 (diff)
fix a gcc warning
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1275 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
-rw-r--r--avahi-core/cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/avahi-core/cache.c b/avahi-core/cache.c
index 3a8f849..4ba88b5 100644
--- a/avahi-core/cache.c
+++ b/avahi-core/cache.c
@@ -480,7 +480,7 @@ void avahi_cache_start_poof(AvahiCache *c, AvahiKey *key, const AvahiAddress *a)
assert(c);
assert(key);
- avahi_cache_walk(c, key, start_poof_callback, a);
+ avahi_cache_walk(c, key, start_poof_callback, (void*) a);
}
void avahi_cache_stop_poof(AvahiCache *c, AvahiRecord *record, const AvahiAddress *a) {