diff options
author | Eli Zaretskii <eliz@gnu.org> | 2021-02-05 09:05:58 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2021-02-05 09:05:58 +0200 |
commit | 887854bae4a3b7b1edc0b2f75a2781a8c31ba805 (patch) | |
tree | 8b60db670763a3d4d4ab0697f47ce4c7e5809027 /binutils/elfedit.c | |
parent | 554c30abef121199d3b43061538c8233c8b33526 (diff) | |
download | gdb-887854bae4a3b7b1edc0b2f75a2781a8c31ba805.zip gdb-887854bae4a3b7b1edc0b2f75a2781a8c31ba805.tar.gz gdb-887854bae4a3b7b1edc0b2f75a2781a8c31ba805.tar.bz2 |
Fix typos in comments added in PR 27252 fix
PR 27252
* elfedit.c (check_file):
* bucomm.c (get_file_size): Fix typos in comments.
Diffstat (limited to 'binutils/elfedit.c')
-rw-r--r-- | binutils/elfedit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/elfedit.c b/binutils/elfedit.c index 260abe0..07d288c 100644 --- a/binutils/elfedit.c +++ b/binutils/elfedit.c @@ -724,8 +724,8 @@ check_file (const char *file_name, struct stat *statbuf_p) #if defined (_WIN32) && !defined (__CYGWIN__) else if (statbuf_p->st_size == 0) { - /* MS-Windows 'stat' doesn't reports the null device as a - regular file; fix that. */ + /* MS-Windows 'stat' reports the null device as a regular file; + fix that. */ int fd = open (file_name, O_RDONLY | O_BINARY); if (isatty (fd)) { |