gui/movieinfo.cpp: fix channel id saving

Origin commit data
------------------
Commit: 6c95ed2924
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-09-26 (Fri, 26 Sep 2014)
This commit is contained in:
[CST] Focus
2014-09-26 09:59:43 +04:00
parent ca69eafab2
commit 4021b3468f

View File

@@ -116,7 +116,7 @@ static void XML_ADD_TAG_UNSIGNED(std::string &_xml_text_, const char *_tag_name_
_xml_text_ += ">\n";
}
static void XML_ADD_TAG_LONG(std::string &_xml_text_, const char *_tag_name_, long int _tag_content_)
static void XML_ADD_TAG_LONG(std::string &_xml_text_, const char *_tag_name_, uint64_t _tag_content_)
{
_xml_text_ += "\t\t<";
_xml_text_ += _tag_name_;