Skip to content

Commit

Permalink
Silence a compiler warning
Browse files Browse the repository at this point in the history
signed vs unsigned comparison.
  • Loading branch information
Beirdo committed Jul 26, 2011
1 parent 97e478d commit 8337e87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythbase/mythcommandlineparser.cpp
Expand Up @@ -1093,7 +1093,7 @@ int MythCommandLineParser::ConfigureLogging(QString mask, unsigned int progress)
verboseMask = toUInt("verboseint");

int quiet = toUInt("quiet");
if (MAX(quiet, progress) > 1)
if (MAX(quiet, (int)progress) > 1)
{
verboseMask = VB_NONE;
verboseArgParse("none");
Expand Down

0 comments on commit 8337e87

Please sign in to comment.