Fix a typo in a comment.

This commit is contained in:
Eli Zaretskii 2013-09-16 11:42:20 +03:00
parent bc120f27bd
commit 8a6205b43f

View file

@ -229,7 +229,7 @@ same_stream (FILE *f1, FILE *f2)
/* Each process on Windows can have at most 1 console, /* Each process on Windows can have at most 1 console,
so if both handles are for the console device, they so if both handles are for the console device, they
are the same. We also compare the console mode to are the same. We also compare the console mode to
distinguish between tsdin and stdout/stderr. */ distinguish between stdin and stdout/stderr. */
if (GetConsoleMode (fh1, &conmode1) if (GetConsoleMode (fh1, &conmode1)
&& GetConsoleMode (fh2, &conmode2) && GetConsoleMode (fh2, &conmode2)
&& conmode1 == conmode2) && conmode1 == conmode2)