summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ace/OS.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/OS.i b/ace/OS.i
index 14fff0d62f5..c27d8369082 100644
--- a/ace/OS.i
+++ b/ace/OS.i
@@ -7409,7 +7409,7 @@ ACE_OS::strcpy (wchar_t *s, const wchar_t *t)
#else
wchar_t *result = s;
- while ((*t++ = *s++) != 0)
+ while ((*s++ = *t++) != 0)
continue;
return result;