Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/provider/provider_tracking.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ static umf_result_t umfMemoryTrackerRemove(umf_memory_tracker_handle_t hTracker,

tracker_alloc_info_t *v = value;

LOG_DEBUG("memory region removed: tracker=%p, ptr=%p, size=%zu",
(void *)hTracker, ptr, v->size);
LOG_DEBUG("memory region removed: tracker=%p, pool=%p, ptr=%p, size=%zu",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: please keep the same vars order as in umfMemoryTrackerAdd

(void *)hTracker, (void *)v->pool, ptr, v->size);

umf_ba_free(hTracker->alloc_info_allocator, value);

Expand Down
Loading