Skip to content

Commit 1b88b75

Browse files
committed
Address code review
1 parent 49b4f95 commit 1b88b75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/obmalloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ _PyMem_ArenaAlloc(void *Py_UNUSED(ctx), size_t size)
467467
if (ptr == MAP_FAILED)
468468
return NULL;
469469
assert(ptr != NULL);
470-
_PyAnnotateMemoryMap(ptr, size, "cpython:obmalloc:PyMem_ArenaAlloc");
470+
_PyAnnotateMemoryMap(ptr, size, "cpython:obmalloc");
471471
return ptr;
472472
#else
473473
return malloc(size);

0 commit comments

Comments
 (0)