id summary reporter owner description type status priority milestone component version severity resolution keywords cc mlocked 13381 """Setting NIT-ID"" message shows unsigned int" Klaas de Waal Klaas de Waal "My mythtv-setup gives the following message on a DVB-T scan: {{{ I ChannelScanSM(/dev/dvb/adapter1/frontend0): Setting NIT-ID to 4294967295 }}} This is obviously not correct and it happens when the ""Network ID"" of a video source is left at its default value of -1.\\ The value is printed as an unsigned int in channelscan_sm.cpp in lines 193-198:\\ {{{ { uint nitid = query.value(0).toInt(); data->SetRealNetworkID(nitid); LOG(VB_CHANSCAN, LOG_INFO, LOC + QString(""Setting NIT-ID to %1"").arg(nitid)); } }}} The value should be printed as an integer as it is really an integer where it is used, as shown in dvbstreamdata.h: {{{ // Real network ID for broken providers int _dvb_real_network_id; }}} {{{ inline void DVBStreamData::SetRealNetworkID(int real_network_id) { QMutexLocker locker(&_listener_lock); _dvb_real_network_id = real_network_id; } }}} The (trivial) patch to change ""uint nitid"" to ""int nitid"" is attached. " Bug Report - General closed trivial 30.1 MythTV - Channel Scanner Master Head low fixed NIT-ID DVB-T channelscan Stuart Auchterlonie 0