From 4b186f88b816851dca198fc523eba4b53d4c1e5e Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Wed, 6 Jan 2021 01:05:10 -0500 Subject: [PATCH] gdbsupport: common-utils.h: fix typo in header --- gdbsupport/ChangeLog | 4 ++++ gdbsupport/common-utils.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdbsupport/ChangeLog b/gdbsupport/ChangeLog index 2c69581fbce..4cac86fbe49 100644 --- a/gdbsupport/ChangeLog +++ b/gdbsupport/ChangeLog @@ -1,3 +1,7 @@ +2021-01-06 Mike Frysinger + + * common-utils.h (align_up): Fix typo in header comment. + 2021-01-04 Simon Marchi * common-debug.h (debug_print_depth): New. diff --git a/gdbsupport/common-utils.h b/gdbsupport/common-utils.h index 20af1f28377..4429f086fce 100644 --- a/gdbsupport/common-utils.h +++ b/gdbsupport/common-utils.h @@ -163,7 +163,7 @@ in_inclusive_range (T value, T low, T high) return value >= low && value <= high; } -/* Ensure that V is aligned to an N byte boundary (B's assumed to be a +/* Ensure that V is aligned to an N byte boundary (N's assumed to be a power of 2). Round up/down when necessary. Examples of correct use include: -- 2.30.2