summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_stdlib.cpp
diff options
context:
space:
mode:
authormsmit <msmit@remedy.nl>2011-04-22 07:26:59 +0000
committermsmit <msmit@remedy.nl>2011-04-22 07:26:59 +0000
commitc92ef88cb4c239e1acb49484d5d17e5a8fcb2deb (patch)
treeebdb161c5856aa7d362d723617b8ade8b1924d0a /ACE/ace/OS_NS_stdlib.cpp
parentb3b8f01bf254972d9e19d22b0de2cd33e5f6960b (diff)
downloadATCD-c92ef88cb4c239e1acb49484d5d17e5a8fcb2deb.tar.gz
Fri Apr 22 07:25:57 UTC 2011 Marcel Smit <msmit@remedy.nl>
* ace/MMAP_Memory_Pool.cpp: * ace/OS_NS_stdlib.cpp: Layout changes * Kokyu/tests/DSRT_MIF/svc.conf: * apps/Gateway/Gateway/svc.conf: * apps/Gateway/Peer/svc.conf: * apps/JAWS/server/svc.conf: * apps/JAWS3/jaws3/jaws.conf: * apps/JAWS3/small/jaws.conf: * apps/JAWS3/small/svc.conf: * examples/APG/Logging/client.conf: * examples/APG/Logging/logging_strategy.conf: * examples/APG/Logging/server.conf: * examples/APG/Naming/svc.conf: * examples/APG/Svc_Config/svc.conf.dynamic: * examples/APG/Svc_Config/svc.conf.static: * examples/ASX/CCM_App/svc.conf: * examples/C++NPv2/svc.conf: * examples/Service_Configurator/IPC-tests/server/svc.conf: * examples/Service_Configurator/Misc/svc.conf1: * examples/Service_Configurator/Misc/svc.conf2: * netsvcs/clients/Naming/Client/svc.conf: * netsvcs/clients/Naming/Client/svc2.conf: * netsvcs/servers/svc.conf: * performance-tests/Synch-Benchmarks/svcconf/perf_t1.conf: * performance-tests/Synch-Benchmarks/svcconf/perf_t16.conf: * performance-tests/Synch-Benchmarks/svcconf/perf_t2.conf: * performance-tests/Synch-Benchmarks/svcconf/perf_t32.conf: * performance-tests/Synch-Benchmarks/svcconf/perf_t4.conf: * performance-tests/Synch-Benchmarks/svcconf/perf_t64.conf: * performance-tests/Synch-Benchmarks/svcconf/perf_t8.conf: * performance-tests/Synch-Benchmarks/svcconf/svc.conf: * protocols/tests/HTBP/HTBP_Config.conf: * protocols/tests/HTBP/Reactor_Tests/inside.conf: * rpmbuild/etc/tao/tao-cosconcurrency.conf: * rpmbuild/etc/tao/tao-cosevent.conf: * rpmbuild/etc/tao/tao-cosnaming.conf: * rpmbuild/etc/tao/tao-cosnotification.conf: * rpmbuild/etc/tao/tao-costrading.conf: * rpmbuild/etc/tao/tao-rtevent.conf: * tests/Bug_3334_Regression_Test.conf: * tests/Service_Config_Stream_Test.conf: * tests/Service_Config_Test.UTF-16.conf: * tests/Service_Config_Test.conf: * tests/Service_Config_Test.conf.xml: * tests/UNIXclerk.conf: * tests/UNIXserver.conf: * tests/UNIXtokens.conf: * tests/Win32clerk.conf: * tests/Win32server.conf: * tests/Win32tokens.conf: Fuzz: Added $Id string.
Diffstat (limited to 'ACE/ace/OS_NS_stdlib.cpp')
-rw-r--r--ACE/ace/OS_NS_stdlib.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/ACE/ace/OS_NS_stdlib.cpp b/ACE/ace/OS_NS_stdlib.cpp
index 457ef8c1b9d..106831c1165 100644
--- a/ACE/ace/OS_NS_stdlib.cpp
+++ b/ACE/ace/OS_NS_stdlib.cpp
@@ -259,13 +259,13 @@ ACE_OS::itow_emulation (int value, wchar_t *string, int radix)
// Now reverse the string to get the correct result
while (e > b)
- {
- wchar_t temp = *e;
- *e = *b;
- *b = temp;
- ++b;
- --e;
- }
+ {
+ wchar_t temp = *e;
+ *e = *b;
+ *b = temp;
+ ++b;
+ --e;
+ }
return string;
}