gui/movieinfo.cpp: fix channel id loading

Origin commit data
------------------
Commit: 7d723aa44f
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-08-16 (Thu, 16 Aug 2012)
This commit is contained in:
[CST] Focus
2012-08-16 15:47:24 +04:00
parent 8e8a7fbd34
commit 3422a325c3

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;\
}