Fix typos in comments added in PR 27252 fix

PR 27252
	* elfedit.c (check_file):
	* bucomm.c (get_file_size): Fix typos in comments.
This commit is contained in:
Eli Zaretskii
2021-02-05 09:05:58 +02:00
parent 554c30abef
commit 887854bae4
3 changed files with 10 additions and 4 deletions

View 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))
{