aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2018-05-18 15:53:21 -0700
committerPaul Eggert2018-05-18 15:53:21 -0700
commit593c367b0727affc739832ab4f4bdb9d7dd1ddd7 (patch)
treeeea8bafddb80cf4e2e27581426d782642b52b03f /src
parenta1c925fd41818cb8ad209762739b220efb919d1e (diff)
downloademacs-593c367b0727affc739832ab4f4bdb9d7dd1ddd7.tar.gz
emacs-593c367b0727affc739832ab4f4bdb9d7dd1ddd7.zip
* src/alloc.c: Fix comment.
Diffstat (limited to 'src')
-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