diff options
| author | Mark Wielaard <mark@klomp.org> | 2024-10-31 17:57:45 +0100 |
|---|---|---|
| committer | Mark Wielaard <mark@klomp.org> | 2024-10-31 22:07:18 +0100 |
| commit | aa84020b2edbab18c98e4e1faa1dfec7bad9d179 (patch) | |
| tree | cad6910de6524779401f8d84570e4d4a7e2c33fd /include | |
| parent | a00a0e34b8a7312bcf357bd0238d6d9711ca96b2 (diff) | |
libiberty: Fix comment typos
These comment typos were found in the valgrind fork of libiberty
demangle code.
libiberty/ChangeLog:
* cplus-dem.c: Change preceeded to preceded.
include/ChangeLog:
* safe-ctype.h: Change accidently to accidentally.
Diffstat (limited to 'include')
| -rw-r--r-- | include/safe-ctype.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/safe-ctype.h b/include/safe-ctype.h index 93785da3f24..eec3d940cf6 100644 --- a/include/safe-ctype.h +++ b/include/safe-ctype.h @@ -112,7 +112,7 @@ extern const unsigned char _sch_tolower[256]; #define TOUPPER(c) _sch_toupper[(c) & 0xff] #define TOLOWER(c) _sch_tolower[(c) & 0xff] -/* Prevent the users of safe-ctype.h from accidently using the routines +/* Prevent the users of safe-ctype.h from accidentally using the routines from ctype.h. Initially, the approach was to produce an error when detecting that ctype.h has been included. But this was causing trouble as ctype.h might get indirectly included as a result of |
