Skip to content

Commit ab837ad

Browse files
Correct typo
1 parent 3859062 commit ab837ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aligned_malloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ void* aligned_malloc(size_t align, size_t size)
5858
{
5959
/*
6060
* Add the offset size to malloc's pointer (we will always store that)
61-
* Then align the resulting value to the arget alignment
61+
* Then align the resulting value to the target alignment
6262
*/
6363
ptr = (void*)align_up(((uintptr_t)p + PTR_OFFSET_SZ), align);
6464

0 commit comments

Comments
 (0)