Opened 19 years ago
Closed 19 years ago
#2549 closed defect (fixed)
wrong debug output because of typo in channel.cpp
| Reported by: | Owned by: | danielk | |
|---|---|---|---|
| Priority: | minor | Milestone: | 0.21 |
| Component: | mythtv | Version: | 0.20 |
| Severity: | low | Keywords: | |
| Cc: | Ticket locked: | no |
Description
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. :)
Change History (2)
Note:
See TracTickets
for help on using tickets.

(In [11490]) Fixes #2549. Fixes a typo in the debug output of Channel::InitializeInputs(void).