PR 27252
* elfedit.c (check_file):
* bucomm.c (get_file_size): Fix typos in comments.
+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
#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))
{
#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))
{