diff options
| author | Frédéric Desbiens <[email protected]> | 2026-06-08 10:01:32 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-06-08 10:01:32 +0200 |
| commit | 87ab09cce305eb9cd4aacac4e8c62af72f665bff (patch) | |
| tree | dd062ebbea5235d1921c64b396bf7e4ce79e9e15 /common/src/tx_trace_object_register.c | |
| parent | 9ab0cf9683f832cdb48e2099533a5b06a3afcd64 (diff) | |
| parent | 730b61874bc5cf40768987605ae5187fde0fa1e2 (diff) | |
Merge pull request #544 from eclipse-threadx/devv6.5.1.202602_rel
Merging changes for the v.6.5.1.202602 release
Diffstat (limited to 'common/src/tx_trace_object_register.c')
| -rw-r--r-- | common/src/tx_trace_object_register.c | 4 |
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 { |
