Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make intended uint->int conversion explicit.
  • Loading branch information
daniel-kristjansson committed Jun 28, 2012
1 parent df769dc commit ddd9d45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/playercontext.cpp
Expand Up @@ -46,7 +46,7 @@ PlayerContext::PlayerContext(const QString &inUseID) :
useNullVideo(false)
{
lastSignalMsgTime.start();
lastSignalMsgTime.addMSecs(-2 * kSMExitTimeout);
lastSignalMsgTime.addMSecs(-2 * (int)kSMExitTimeout);
}

PlayerContext::~PlayerContext()
Expand Down

0 comments on commit ddd9d45

Please sign in to comment.