From 0208942b840b631e4bd1bd8c9834d0be36f975a0 Mon Sep 17 00:00:00 2001 From: Siana Gearz Date: Tue, 31 Jul 2012 21:28:37 +0200 Subject: [PATCH] Compile warning fix --- indra/cwdebug/debug.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/cwdebug/debug.cc b/indra/cwdebug/debug.cc index 2f25e5358..34ce73738 100644 --- a/indra/cwdebug/debug.cc +++ b/indra/cwdebug/debug.cc @@ -457,7 +457,7 @@ std::ostream& operator<<(std::ostream& os, libcwd::buf2str const& b2s) os.put('\\'); return os; } - short old_fill = os.fill('0'); + std::ostream::char_type old_fill = os.fill('0'); std::ios_base::fmtflags old_flgs = os.flags(); os.width(3); os << std::oct << (int)((unsigned char)c);