summaryrefslogtreecommitdiff
path: root/common/src/tx_trace_object_register.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/tx_trace_object_register.c')
-rw-r--r--common/src/tx_trace_object_register.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/src/tx_trace_object_register.c b/common/src/tx_trace_object_register.c
index f7cd4a4a..741896a5 100644
--- a/common/src/tx_trace_object_register.c
+++ b/common/src/tx_trace_object_register.c
@@ -85,7 +85,7 @@ TX_TRACE_OBJECT_ENTRY *entry_ptr;
/* Trace buffer is enabled, proceed. */
/* Pickup the total entries. */
- entries = _tx_trace_total_registry_entries;
+ entries = (UINT) _tx_trace_total_registry_entries;
/* Determine if there are available entries in the registry. */
if (_tx_trace_available_registry_entries != ((ULONG) 0))
@@ -98,7 +98,7 @@ TX_TRACE_OBJECT_ENTRY *entry_ptr;
loop_break = TX_FALSE;
/* Loop to find available entry. */
- i = _tx_trace_registry_search_start;
+ i = (UINT) _tx_trace_registry_search_start;
do
{