Skip to content

Commit

Permalink
Fix compiler warning
Browse files Browse the repository at this point in the history
Seems the compiler was confused which type of arg() method to use here, so I
needed to get more type explicit.
  • Loading branch information
Beirdo committed Jun 29, 2011
1 parent 8c4064d commit a52ef68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/dvbdev/dvbci.cpp
Expand Up @@ -322,7 +322,7 @@ void cTPDU::Dump(bool Outgoing)
#define MAX_DUMP 256
QString msg = QString("%1 ").arg(Outgoing ? "-->" : "<--");
for (int i = 0; i < size && i < MAX_DUMP; i++)
msg += QString("%1 ").arg(data[i], 2, 16, '0');
msg += QString("%1 ").arg((short int)data[i], 2, 16, QChar('0'));
if (size >= MAX_DUMP)
msg += "...";
LOG(VB_DVBCAM, LOG_INFO, msg);
Expand Down

0 comments on commit a52ef68

Please sign in to comment.