Skip to content

Commit f8a8175

Browse files
committed
Fix error message in umfMemoryTrackerRemove
Signed-off-by: Lukasz Dorau <[email protected]>
1 parent 12abae0 commit f8a8175

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/provider/provider_tracking.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ static umf_result_t umfMemoryTrackerRemove(umf_memory_tracker_handle_t hTracker,
7070

7171
void *value = critnib_remove(hTracker->map, (uintptr_t)ptr);
7272
if (!value) {
73-
LOG_ERR("umfMemoryTrackerRemove: Unknown Error");
73+
LOG_ERR("umfMemoryTrackerRemove: pointer %p not found in the map", ptr);
7474
return UMF_RESULT_ERROR_UNKNOWN;
7575
}
7676

0 commit comments

Comments
 (0)