use C locale, because POSIX locale is not supported on windows, and operation is undefined. C works on all platforms

This commit is contained in:
Ben Loftis 2015-01-19 07:29:25 -06:00
parent 8900d7d9ea
commit d2fa2450aa
25 changed files with 51 additions and 51 deletions

View file

@ -224,7 +224,7 @@ MonitorProcessor::set_state (const XMLNode& node, int version)
XMLNode&
MonitorProcessor::state (bool full)
{
LocaleGuard lg (X_("POSIX"));
LocaleGuard lg (X_("C"));
XMLNode& node (Processor::state (full));
char buf[64];