mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
rename pa_queu_is_empty() to pa_queue_isempty() to follow idxset/hashmap nomenclatura
This commit is contained in:
parent
3db7dcb962
commit
232c9558ff
4 changed files with 6 additions and 6 deletions
|
|
@ -37,12 +37,12 @@ int main(int argc, char *argv[]) {
|
|||
|
||||
pa_assert_se(q = pa_queue_new());
|
||||
|
||||
pa_assert(pa_queue_is_empty(q));
|
||||
pa_assert(pa_queue_isempty(q));
|
||||
|
||||
pa_queue_push(q, (void*) "eins");
|
||||
pa_log("%s\n", (char*) pa_queue_pop(q));
|
||||
|
||||
pa_assert(pa_queue_is_empty(q));
|
||||
pa_assert(pa_queue_isempty(q));
|
||||
|
||||
pa_queue_push(q, (void*) "zwei");
|
||||
pa_queue_push(q, (void*) "drei");
|
||||
|
|
@ -56,7 +56,7 @@ int main(int argc, char *argv[]) {
|
|||
pa_log("%s\n", (char*) pa_queue_pop(q));
|
||||
pa_log("%s\n", (char*) pa_queue_pop(q));
|
||||
|
||||
pa_assert(pa_queue_is_empty(q));
|
||||
pa_assert(pa_queue_isempty(q));
|
||||
|
||||
pa_queue_push(q, (void*) "sechs");
|
||||
pa_queue_push(q, (void*) "sieben");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue