summaryrefslogtreecommitdiff
path: root/examples/ASX/Event_Server/Event_Server/Event_Analyzer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ASX/Event_Server/Event_Server/Event_Analyzer.cpp')
-rw-r--r--examples/ASX/Event_Server/Event_Server/Event_Analyzer.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/ASX/Event_Server/Event_Server/Event_Analyzer.cpp b/examples/ASX/Event_Server/Event_Server/Event_Analyzer.cpp
index b89e70f35f0..0300f6d7133 100644
--- a/examples/ASX/Event_Server/Event_Server/Event_Analyzer.cpp
+++ b/examples/ASX/Event_Server/Event_Server/Event_Analyzer.cpp
@@ -71,12 +71,12 @@ Event_Analyzer::fini (void)
int
Event_Analyzer::info (ACE_TCHAR **strp, size_t length) const
{
- const ACE_TCHAR *mod_name = this->name ();
+ const ACE_TCHAR *module_name = this->name ();
- if (*strp == 0 && (*strp = ACE_OS::strdup (mod_name)) == 0)
+ if (*strp == 0 && (*strp = ACE_OS::strdup (module_name)) == 0)
return -1;
else
- ACE_OS::strncpy (*strp, mod_name, length);
+ ACE_OS::strncpy (*strp, module_name, length);
- return ACE_Utils::truncate_cast<int> (ACE_OS::strlen (mod_name));
+ return ACE_Utils::truncate_cast<int> (ACE_OS::strlen (module_name));
}