From 4c2b3ed86cf669c334a15c0efb3ffe9b74d33b0d Mon Sep 17 00:00:00 2001 From: Dario Casalinuovo Date: Sun, 28 Jun 2015 11:51:46 +0000 Subject: [PATCH] Fix typo preventing to build under gcc4. --- libs/libgloox/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/libgloox/util.h b/libs/libgloox/util.h index 8bebc99..8bab2c7 100644 --- a/libs/libgloox/util.h +++ b/libs/libgloox/util.h @@ -294,7 +294,7 @@ namespace gloox while( output.empty() || value > 0 ) { - output.insert((0, 1, static_cast( value % base + '0' ) ); + output.insert( 0, 1, static_cast( value % base + '0' )); value /= base; }