mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-31 01:11:12 +02:00
gui/movieinfo.cpp: fix channel id loading
This commit is contained in:
@@ -608,7 +608,7 @@ int find_next_char(char to_find, char *text, int start_pos, int end_pos)
|
|||||||
_pos_ += sizeof(_tag_) ;\
|
_pos_ += sizeof(_tag_) ;\
|
||||||
int pos_prev = _pos_;\
|
int pos_prev = _pos_;\
|
||||||
while(_pos_ < bytes && _text_[_pos_] != '<' ) pos++;\
|
while(_pos_ < bytes && _text_[_pos_] != '<' ) pos++;\
|
||||||
_dest_ = atoll(&_text_[pos_prev]);\
|
_dest_ = strtoull(&_text_[pos_prev], NULL, 10); /*atoll(&_text_[pos_prev]);*/\
|
||||||
continue;\
|
continue;\
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user