aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 231ade5cf80..d959c55350a 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -508,8 +508,8 @@ pointer_align (void *ptr, int alignment)
508 DEFINE_KEY_OPS_AS_MACROS, for performance in that case. 508 DEFINE_KEY_OPS_AS_MACROS, for performance in that case.
509 The macro_* macros are private to this section of code. */ 509 The macro_* macros are private to this section of code. */
510 510
511/* Add a pointer an an integer without complaint about a pointer going 511/* Add a pointer P to an integer I without gcc -fsanitize complaining
512 out of range of the underlying array. */ 512 about the result being out of range of the underlying array. */
513 513
514#define macro_PNTR_ADD(p, i) ((p) + (i)) 514#define macro_PNTR_ADD(p, i) ((p) + (i))
515 515