gui/movieinfo.cpp: fix channel id loading

This commit is contained in:
[CST] Focus
2012-08-16 15:47:24 +04:00
parent 721ba0b47f
commit 7d723aa44f

View File

@@ -608,7 +608,7 @@ int find_next_char(char to_find, char *text, int start_pos, int end_pos)
_pos_ += sizeof(_tag_) ;\
int pos_prev = _pos_;\
while(_pos_ < bytes && _text_[_pos_] != '<' ) pos++;\
_dest_ = atoll(&_text_[pos_prev]);\
_dest_ = strtoull(&_text_[pos_prev], NULL, 10); /*atoll(&_text_[pos_prev]);*/\
continue;\
}