capmt: fix capmt_pid_remove() by removing extra semicolon

Thanks to clang for notifying this.
This commit is contained in:
Damjan Marion 2014-06-10 18:04:40 +02:00
parent d1c04df5a4
commit a2fe8f50db

View file

@ -378,7 +378,7 @@ capmt_pid_remove(capmt_t *capmt, int adapter, int pid)
for (i = 0; i < MAX_PIDS; i++)
if (ca->ca_pids[i].pid == pid)
break;
if (i >= MAX_PIDS);
if (i >= MAX_PIDS)
return;
mmi = LIST_FIRST(&capmt->capmt_adapters[adapter].ca_tuner->mi_mux_active);
descrambler_close_pid(mmi->mmi_mux, &ca->ca_pids[i], pid);