fix obvious typo
This commit is contained in:
parent
8fdc41a2ea
commit
f58d8c6240
1 changed files with 3 additions and 1 deletions
4
dvb.c
4
dvb.c
|
@ -804,8 +804,10 @@ dvb_sdt_callback(th_dvb_mux_instance_t *tdmi, uint8_t *ptr, int len,
|
|||
chname++;
|
||||
|
||||
l = strlen(chname);
|
||||
while(l > 1 && chname[l - 1] <= 32)
|
||||
while(l > 1 && chname[l - 1] <= 32) {
|
||||
chname[l - 1] = 0;
|
||||
l--;
|
||||
}
|
||||
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue