Bug 830485 - Style fix for hex parsing. r=vladan.

--HG--
extra : rebase_source : e8f695fd759da7f6fa261e6cd5df68db2e2c2d0f
This commit is contained in:
Rafael Ávila de Espíndola 2013-01-14 17:45:46 -05:00
parent 767acf6408
commit e8a18c771f

View File

@ -130,8 +130,10 @@ AddSharedLibraryInfoToStream(std::ostream& aStream, const SharedLibrary& aLib)
std::string pdbAgeStr = breakpadId.substr(32, breakpadId.size() - 1);
std::stringstream stream;
stream << std::hex << pdbAgeStr;
stream << pdbAgeStr;
unsigned pdbAge;
stream << std::hex;
stream >> pdbAge;
#ifdef DEBUG