Skip to content

Commit

Permalink
Remove signed/unsigned warning from audiooutputbase
Browse files Browse the repository at this point in the history
  • Loading branch information
Beirdo committed May 8, 2011
1 parent 8306cc4 commit 923ef0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmyth/audio/audiooutputbase.cpp
Expand Up @@ -1187,7 +1187,7 @@ int AudioOutputBase::CopyWithUpmix(char *buffer, int frames, int &org_waud)
len += CheckFreeSpace(nFrames);

bdFrames = (kAudioRingBufferSize - org_waud) / bpf;
if ((kAudioRingBufferSize - org_waud) != (bdFrames * bpf))
if ((int)(kAudioRingBufferSize - org_waud) != (bdFrames * bpf))
{
VERBOSE(VB_AUDIO, LOC + QString("CopyWithUpmix: will miss data (%1)")
.arg(bdiff - (bdFrames * bpf)));
Expand Down

0 comments on commit 923ef0e

Please sign in to comment.