fix a PA_LLIST_HEAD_INIT invocation

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1261 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2006-08-17 20:03:38 +00:00
parent a847f74ed0
commit c3df1ceb38

View file

@ -24,7 +24,7 @@
void pa_hook_init(pa_hook *hook, void *data) {
assert(hook);
PA_LLIST_HEAD_INIT(pa_hook_slots, hook->slots);
PA_LLIST_HEAD_INIT(pa_hook_slot, hook->slots);
hook->last = NULL;
hook->n_dead = hook->firing = 0;
hook->data = data;