Use simple free function in pa_queue_free

This commit is contained in:
Maarten Bosmans 2011-11-18 09:58:09 +01:00 committed by Colin Guthrie
parent e45b02de55
commit cbb3a8a61c
6 changed files with 13 additions and 13 deletions

View file

@ -58,7 +58,7 @@ int main(int argc, char *argv[]) {
pa_queue_push(q, (void*) "sechs");
pa_queue_push(q, (void*) "sieben");
pa_queue_free(q, NULL, NULL);
pa_queue_free(q, NULL);
return 0;
}