diff options
Diffstat (limited to 'src/player_control.c')
-rw-r--r-- | src/player_control.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/player_control.c b/src/player_control.c index 049fc0d1f..40725e12a 100644 --- a/src/player_control.c +++ b/src/player_control.c @@ -69,7 +69,7 @@ player_wait_decoder(struct player_control *pc, struct decoder_control *dc) { assert(pc != NULL); assert(dc != NULL); - assert(dc->player_control == pc); + assert(dc->client_cond == pc->cond); /* during this function, the decoder lock is held, because we're waiting for the decoder thread */ |