Skip to content

Commit

Permalink
tidy: Fix a "variable not initialized" warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxdude42 committed Nov 5, 2021
1 parent eeb9ba3 commit faf39fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/tv_play.cpp
Expand Up @@ -5104,7 +5104,7 @@ void TV::ChangeSpeed(int Direction)
m_playerContext.m_ffRewSpeed += Direction;

float time = StopFFRew();
float speed;
float speed {NAN};

// Make sure these values for m_ffRewSpeed in TV::ChangeSpeed()
// and PlayerContext::GetPlayMessage() stay in sync.
Expand Down

0 comments on commit faf39fb

Please sign in to comment.