Skip to content

Commit 0307183

Browse files
author
Robert McNamara
committed
squelch a warning in tv_play.cpp
1 parent 0bef566 commit 0307183

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mythtv/libs/libmythtv/tv_play.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7770,7 +7770,7 @@ void TV::ChangeVolume(PlayerContext *ctx, bool up)
77707770
{
77717771
ctx->LockDeletePlayer(__FILE__, __LINE__);
77727772
if (!ctx->player ||
7773-
ctx->player && !ctx->player->PlayerControlsVolume())
7773+
(ctx->player && !ctx->player->PlayerControlsVolume()))
77747774
{
77757775
ctx->UnlockDeletePlayer(__FILE__, __LINE__);
77767776
return;

0 commit comments

Comments
 (0)