Bustage fix for bug 1004098 (m-c), cast the length field to make it non-ambiguous. rs=bustage fix for CLOSED TREE

This commit is contained in:
Mark Banner 2014-05-12 19:47:15 +01:00
Родитель c9eb041d5e
Коммит 79d843a4a0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -190,7 +190,7 @@ bool nsNewsDownloader::GetNextHdrToRetrieve()
nsAutoString firstStr;
firstStr.AppendInt(m_numwrote);
nsAutoString totalStr;
totalStr.AppendInt(m_keysToDownload.Length());
totalStr.AppendInt(int(m_keysToDownload.Length()));
nsString prettiestName;
nsString statusString;