summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2003-03-14 00:14:23 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2003-03-14 00:14:23 +0000
commita258f41268b6d181206a5f54ef1216fb7118efa6 (patch)
treef73781f49b45b37219418dbea9fb2fdb1e5df530 /ace
parentbabecb5a7d2e9faeab40eed4df32a94b83983120 (diff)
downloadATCD-a258f41268b6d181206a5f54ef1216fb7118efa6.tar.gz
ChangeLogTag:Thu Mar 13 16:11:48 2003 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'ace')
-rw-r--r--ace/Log_Msg.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/ace/Log_Msg.cpp b/ace/Log_Msg.cpp
index 9e281943124..6dfa0edaca5 100644
--- a/ace/Log_Msg.cpp
+++ b/ace/Log_Msg.cpp
@@ -2073,12 +2073,16 @@ ACE_Log_Msg::log_hexdump (ACE_Log_Priority log_priority,
text);
sz += ACE_OS::sprintf (msg_buf + sz,
- ACE_LIB_TEXT ("HEXDUMP %lu bytes"),
+ ACE_LIB_TEXT ("HEXDUMP ")
+ ACE_SIZE_T_FORMAT_SPECIFIER
+ ACE_LIB_TEXT (" bytes"),
size);
if (len < size)
ACE_OS::sprintf (msg_buf + sz,
- ACE_LIB_TEXT (" (showing first %lu bytes)"),
+ ACE_LIB_TEXT (" (showing first ")
+ ACE_SIZE_T_FORMAT_SPECIFIER
+ ACE_LIB_TEXT (" bytes)"),
len);
// Now print out the formatted buffer.