summaryrefslogtreecommitdiff
path: root/ace/Log_Msg.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-10-21 12:47:32 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-10-21 12:47:32 +0000
commit5d974aeb85266a9e0cc5582daf7b705ece4dee2a (patch)
tree0de6068282b5d895c20d4b948fa89c8616e7c315 /ace/Log_Msg.cpp
parent7e50c2c598006df64e415ec5a7a6ea4cd4e1c93a (diff)
downloadATCD-5d974aeb85266a9e0cc5582daf7b705ece4dee2a.tar.gz
ChangeLogTag: Fri Oct 21 12:39:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace/Log_Msg.cpp')
-rw-r--r--ace/Log_Msg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Log_Msg.cpp b/ace/Log_Msg.cpp
index 9719e6e9bc4..688fb9e3227 100644
--- a/ace/Log_Msg.cpp
+++ b/ace/Log_Msg.cpp
@@ -1708,10 +1708,10 @@ ACE_Log_Msg::log (const ACE_TCHAR *format_str,
# endif /* HPUX */
if (can_check)
this_len = ACE_OS::snprintf
- (bp, bspace, format, wchar_str ? wchar_str : ACE_LIB_TEXT ("(null)"));
+ (bp, bspace, format, wchar_str);
else
this_len = ACE_OS::sprintf
- (bp, format, wchar_str ? wchar_str : ACE_LIB_TEXT ("(null)"));
+ (bp, format, wchar_str);
#endif /* ACE_WIN32 / ACE_HAS_WCHAR */
ACE_UPDATE_COUNT (bspace, this_len);
}