Fix typo preventing to build under gcc4.

This commit is contained in:
Dario Casalinuovo 2015-06-28 11:51:46 +00:00
parent e41a0338f1
commit 4c2b3ed86c

View File

@ -294,7 +294,7 @@ namespace gloox
while( output.empty() || value > 0 )
{
output.insert((0, 1, static_cast<char>( value % base + '0' ) );
output.insert( 0, 1, static_cast<char>( value % base + '0' ));
value /= base;
}