Skip to content

Commit

Permalink
Fix Coverity 700588.
Browse files Browse the repository at this point in the history
  • Loading branch information
stichnot committed May 30, 2013
1 parent 48b2801 commit 64e669b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/videobuffers.cpp
Expand Up @@ -818,7 +818,7 @@ QString VideoBuffers::GetStatus(int n) const
unsigned long long x = to_bitmap(decode);
for (uint i=0; i<(uint)n; i++)
{
unsigned long long mask = 1<<i;
unsigned long long mask = 1ull<<i;
QString tmp("");
if (a & mask)
tmp += (x & mask) ? "a" : "A";
Expand Down

0 comments on commit 64e669b

Please sign in to comment.