pat.cpp: add debug if sid not found

This commit is contained in:
[CST] Focus
2012-01-19 16:41:52 +04:00
parent 28c0f5419c
commit 510f68d48a

View File

@@ -96,6 +96,8 @@ unsigned short CPat::GetPmtPid(t_service_id sid)
if(it != sidpmt.end())
pid = it->second;
}
if(!pid)
printf("[pat] sid %04x not found\n", sid);
return pid;
}