mirror of https://bitbucket.org/ausocean/av.git
exp/ts-repair: fix assignment
This commit is contained in:
parent
073678f190
commit
46ab4b200e
|
@ -209,10 +209,7 @@ func main() {
|
||||||
packetNo++
|
packetNo++
|
||||||
|
|
||||||
// Get the pid from the packet
|
// Get the pid from the packet
|
||||||
pid, err := packet.Pid((*packet.Packet)(&p))
|
pid := packet.Pid((*packet.Packet)(&p))
|
||||||
if err != nil {
|
|
||||||
panic(errCantGetPid)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get the cc from the packet and also the expected cc (if exists)
|
// Get the cc from the packet and also the expected cc (if exists)
|
||||||
cc := p.CC()
|
cc := p.CC()
|
||||||
|
|
Loading…
Reference in New Issue