Skip to content

Commit

Permalink
Use the right type argument to vector::insert.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxdude42 committed Apr 3, 2019
1 parent d726068 commit 2c5ccea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/tv_play.cpp
Expand Up @@ -8675,7 +8675,7 @@ void TV::DoEditSchedule(int editType)
pause_active |= !isLiveTV && (!m_dbContinueEmbedded || isNearEnd);
pause_active |= paused;
vector<bool> do_pause;
do_pause.insert(do_pause.begin(), true, !m_player.empty());
do_pause.insert(do_pause.begin(), 1, !m_player.empty());
int actx_index = find_player_index(actx);
if (actx_index < 0)
{
Expand Down

0 comments on commit 2c5ccea

Please sign in to comment.