Skip to content

Commit

Permalink
Fix signed/unsigned comparison warning
Browse files Browse the repository at this point in the history
buftmp should be a uint, not an int
  • Loading branch information
garybuhrmaster committed Jun 6, 2013
1 parent 2557537 commit 1b24985
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmyth/audio/audiooutputalsa.cpp
Expand Up @@ -746,7 +746,7 @@ int AudioOutputALSA::SetParameters(snd_pcm_t *handle, snd_pcm_format_t format,
if (err < 0)
{
int dir = -1;
int buftmp = buffer_time;
uint buftmp = buffer_time;
int attempt = 0;
do
{
Expand Down

0 comments on commit 1b24985

Please sign in to comment.