diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-01-06 01:05:10 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-01-06 05:52:06 -0500 |
commit | 4b186f88b816851dca198fc523eba4b53d4c1e5e (patch) | |
tree | d19cf9bd0f462812acb8e1b750afad9f8c0f7c9c | |
parent | 599c86c4a57c10c456663fadd8dfb21cbbcafe57 (diff) | |
download | fsf-binutils-gdb-4b186f88b816851dca198fc523eba4b53d4c1e5e.zip fsf-binutils-gdb-4b186f88b816851dca198fc523eba4b53d4c1e5e.tar.gz fsf-binutils-gdb-4b186f88b816851dca198fc523eba4b53d4c1e5e.tar.bz2 |
gdbsupport: common-utils.h: fix typo in header
-rw-r--r-- | gdbsupport/ChangeLog | 4 | ||||
-rw-r--r-- | gdbsupport/common-utils.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdbsupport/ChangeLog b/gdbsupport/ChangeLog index 2c69581..4cac86f 100644 --- a/gdbsupport/ChangeLog +++ b/gdbsupport/ChangeLog @@ -1,3 +1,7 @@ +2021-01-06 Mike Frysinger <vapier@gentoo.org> + + * common-utils.h (align_up): Fix typo in header comment. + 2021-01-04 Simon Marchi <simon.marchi@efficios.com> * common-debug.h (debug_print_depth): New. diff --git a/gdbsupport/common-utils.h b/gdbsupport/common-utils.h index 20af1f2..4429f08 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: |