pulse-server: pending-sample: rename ready to replied

Rename `pending_sample::ready` to `pending_sample::replied` because
it is set when a reply is sent, not when the ready signal comes.
This commit is contained in:
Barnabás Pőcze 2023-05-07 16:03:29 +02:00 committed by Wim Taymans
parent e37da42632
commit dd7c47bb3d
2 changed files with 3 additions and 4 deletions

View file

@ -21,7 +21,7 @@ struct pending_sample {
struct sample_play *play;
struct spa_hook listener;
uint32_t tag;
unsigned ready:1;
unsigned replied:1;
unsigned done:1;
};