summaryrefslogtreecommitdiff
path: root/ace/OS_NS_stdio.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/OS_NS_stdio.cpp')
-rw-r--r--ace/OS_NS_stdio.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/OS_NS_stdio.cpp b/ace/OS_NS_stdio.cpp
index 2abc599be40..bdb8ca16e14 100644
--- a/ace/OS_NS_stdio.cpp
+++ b/ace/OS_NS_stdio.cpp
@@ -197,7 +197,7 @@ ACE_OS::gets (char *str, int n)
if (n == 0) str = 0;
else n--;
- while ((c = getchar ()) != '\n')
+ while ((c = ACE_STD_NAMESPACE::getchar ()) != '\n')
{
if (c == EOF && errno == EINTR)