[mythtv-commits] Ticket #2549: wrong debug output because of typo in channel.cpp

MythTV mythtv at cvs.mythtv.org
Sun Oct 8 17:48:17 UTC 2006


#2549: wrong debug output because of typo in channel.cpp
----------------------------------------+-----------------------------------
 Reporter:  andreas.sahlbach at gmail.com  |       Owner:  ijr    
     Type:  defect                      |      Status:  new    
 Priority:  minor                       |   Milestone:  unknown
Component:  mythtv                      |     Version:  0.20   
 Severity:  low                         |  
----------------------------------------+-----------------------------------
 In function bool Channel::InitializeInputs(void) from
 mythtv/libs/libmythtv/channel.cpp:
 {{{

 258         // print em
 259         for (it = inputs.begin(); it != inputs.end(); ++it)
 260         {
 261             VERBOSE(VB_CHANNEL, LOC + QString("Input #%1: '%2'
 schan(%3) "
 262                                               "tun(%4) v4l1(%5)
 v4l2(%6)")
 263
 .arg(it.key()).arg((*it)->name).arg((*it)->startChanNum)
 264                     .arg((*it)->tuneToChannel)
 265                     .arg(mode_to_format((*it)->videoModeV4L1,1))
 266                     .arg(mode_to_format((*it)->videoModeV4L1,2)));
 267         }

 }}}

 Change line 266 to

 {{{

 266                    .arg(mode_to_format((*it)->videoModeV4L2,2)));

 }}}

 I know, it's pretty small but still annoying, coz it hit me while
 searching for a problem. :)

-- 
Ticket URL: <http://svn.mythtv.org/trac/ticket/2549>
MythTV <http://www.mythtv.org/>
MythTV


More information about the mythtv-commits mailing list