Fix typos in comments added in PR 27252 fix
authorEli Zaretskii <eliz@gnu.org>
Fri, 5 Feb 2021 07:05:58 +0000 (09:05 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 5 Feb 2021 07:05:58 +0000 (09:05 +0200)
PR 27252
* elfedit.c (check_file):
* bucomm.c (get_file_size): Fix typos in comments.

binutils/ChangeLog
binutils/bucomm.c
binutils/elfedit.c

index dd4d7f13f8bcee1d1d3138b14fdbc9be72d41708..b468e5b862604145823a77331c9c72199591c91e 100644 (file)
@@ -1,3 +1,9 @@
+2021-02-05  Eli Zaretskii  <eliz@gnu.org>
+
+       PR 27252
+       * elfedit.c (check_file):
+       * bucomm.c (get_file_size): Fix typos in comments.
+
 2021-02-05  Alan Modra  <amodra@gmail.com>
 
        PR 27345
index 0499007c58c1891fc8d580c639d268031d1e78f3..a834ab1170ea2668bbd2a745bd452f5f1d49fd1b 100644 (file)
@@ -626,8 +626,8 @@ get_file_size (const char * file_name)
 #if defined (_WIN32) && !defined (__CYGWIN__)
   else if (statbuf.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))
        {
index 260abe0201fdbe7bb11bcbcb08051b3261de13a7..07d288c8543c79e4c4f2e55498fa316bb067fdde 100644 (file)
@@ -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))
        {