From 7f0d9e61f40c669fca3cfd1e342fa8236c7220b7 Mon Sep 17 00:00:00 2001 From: Paul Pluzhnikov Date: Sat, 20 May 2023 13:37:47 +0000 Subject: Fix all the remaining misspellings -- BZ 25337 --- include/libc-pointer-arith.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/libc-pointer-arith.h') diff --git a/include/libc-pointer-arith.h b/include/libc-pointer-arith.h index 1faf0209c4..aa57e598d5 100644 --- a/include/libc-pointer-arith.h +++ b/include/libc-pointer-arith.h @@ -64,7 +64,7 @@ #define PTR_IS_ALIGNED(base, size) \ ((((uintptr_t) (base)) & (size - 1)) == 0) -/* Returns the ptrdiff_t diference between P1 and P2. */ +/* Returns the ptrdiff_t difference between P1 and P2. */ #define PTR_DIFF(p1, p2) \ ((ptrdiff_t)((uintptr_t)(p1) - (uintptr_t)(p2))) -- cgit 1.4.1