Skip to content

Commit

Permalink
Silence icc warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
stichnot committed Jun 17, 2012
1 parent ed073b5 commit 5aae42d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/decoderbase.cpp
Expand Up @@ -38,7 +38,7 @@ DecoderBase::DecoderBase(MythPlayer *parent, const ProgramInfo &pginfo)
m_positionMapLock(QMutex::Recursive),
dontSyncPositionMap(false),

seeksnap(-1), livetv(false), watchingrecording(false),
seeksnap(UINT64_MAX), livetv(false), watchingrecording(false),

hasKeyFrameAdjustTable(false), lowbuffers(false),
getrawframes(false), getrawvideo(false),
Expand Down
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/deletemap.cpp
Expand Up @@ -552,7 +552,7 @@ bool DeleteMap::IsInDelete(uint64_t frame) const
return true;

int lasttype = MARK_UNSET;
uint64_t lastframe = -1;
uint64_t lastframe = UINT64_MAX;
for (it = m_deleteMap.begin() ; it != m_deleteMap.end(); ++it)
{
if (it.key() > frame)
Expand Down

0 comments on commit 5aae42d

Please sign in to comment.