summaryrefslogtreecommitdiff
path: root/orbsvcs/orbsvcs/Log/Hash_LogRecordStore.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'orbsvcs/orbsvcs/Log/Hash_LogRecordStore.cpp')
-rw-r--r--orbsvcs/orbsvcs/Log/Hash_LogRecordStore.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/orbsvcs/orbsvcs/Log/Hash_LogRecordStore.cpp b/orbsvcs/orbsvcs/Log/Hash_LogRecordStore.cpp
index f869551e68c..cbd7728ff8b 100644
--- a/orbsvcs/orbsvcs/Log/Hash_LogRecordStore.cpp
+++ b/orbsvcs/orbsvcs/Log/Hash_LogRecordStore.cpp
@@ -1,3 +1,5 @@
+// $Id$
+
#include "orbsvcs/Log/LogMgr_i.h"
#include "orbsvcs/Log/Hash_LogRecordStore.h"
#include "orbsvcs/Log/Hash_Iterator_i.h"
@@ -10,10 +12,6 @@
#include "tao/debug.h"
#include "ace/OS_NS_sys_time.h"
-ACE_RCSID (Log,
- Hash_LogRecordStore,
- "$Id$")
-
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
TAO_Hash_LogRecordStore::TAO_Hash_LogRecordStore (
@@ -468,10 +466,12 @@ TAO_Hash_LogRecordStore::retrieve (DsLogAdmin::TimeT from_time,
#endif
if (how_many >= 0)
- ACE_OS::sprintf (constraint, "time >= %s", uint64_formating);
+ ACE_OS::sprintf (constraint, "time >= %s",
+ ACE_TEXT_ALWAYS_CHAR (uint64_formating));
else
{
- ACE_OS::sprintf (constraint, "time < %s", uint64_formating);
+ ACE_OS::sprintf (constraint, "time < %s",
+ ACE_TEXT_ALWAYS_CHAR (uint64_formating));
how_many = -(how_many);
}