summaryrefslogtreecommitdiff
path: root/ACE/examples/APG/Streams/CommandTask.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/APG/Streams/CommandTask.cpp')
-rw-r--r--ACE/examples/APG/Streams/CommandTask.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/examples/APG/Streams/CommandTask.cpp b/ACE/examples/APG/Streams/CommandTask.cpp
index 7ad63166ffd..c5a8b9d7129 100644
--- a/ACE/examples/APG/Streams/CommandTask.cpp
+++ b/ACE/examples/APG/Streams/CommandTask.cpp
@@ -26,7 +26,7 @@ int CommandTask::put (ACE_Message_Block *message,
// Listing 04 code/ch18
int CommandTask::process (Command *)
{
- ACE_TRACE (ACE_TEXT ("CommandTask::process()"));
+ ACE_TRACE ("CommandTask::process()");
return Command::RESULT_FAILURE;
}
// Listing 04