gui/movieinfo.cpp: fix channel id loading

Origin commit data
------------------
Branch: ni/coolstream
Commit: 7d723aa44f
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-08-16 (Thu, 16 Aug 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2012-08-16 15:47:24 +04:00
parent 27eb750ad2
commit 6702e40765

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