Skip to content

Commit

Permalink
Fix a compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
stichnot committed Apr 15, 2012
1 parent 04e0d94 commit d5f22eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/tvremoteutil.cpp
Expand Up @@ -178,7 +178,7 @@ vector<uint> RemoteRequestFreeRecorderList(const vector<uint> &excluded_cardids)
}
}
QString msg("RemoteRequestFreeRecorderList returned {");
for (int k = 0; k < result.size(); k++)
for (uint k = 0; k < result.size(); k++)
msg += QString(" %1").arg(result[k]);
msg += "}";
LOG(VB_CHANNEL, LOG_INFO, msg);
Expand Down

0 comments on commit d5f22eb

Please sign in to comment.