From 593c367b0727affc739832ab4f4bdb9d7dd1ddd7 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 18 May 2018 15:53:21 -0700 Subject: [PATCH] * src/alloc.c: Fix comment. --- src/alloc.c | 4 ++-- 1 file 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) DEFINE_KEY_OPS_AS_MACROS, for performance in that case. The macro_* macros are private to this section of code. */ -/* Add a pointer an an integer without complaint about a pointer going - out of range of the underlying array. */ +/* Add a pointer P to an integer I without gcc -fsanitize complaining + about the result being out of range of the underlying array. */ #define macro_PNTR_ADD(p, i) ((p) + (i)) -- 2.39.5