summaryrefslogtreecommitdiff
path: root/w32
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2013-09-16 11:42:20 +0300
committerEli Zaretskii <eliz@gnu.org>2013-09-16 11:42:20 +0300
commit8a6205b43f6224dfaa759ce73d7b1c9772b6d645 (patch)
tree6c380c96ce26aeb08564a43c3ac3d15af68754d4 /w32
parentbc120f27bd87ff32218c30bd9589201eff7fcfee (diff)
downloadgunmake-8a6205b43f6224dfaa759ce73d7b1c9772b6d645.tar.gz
Fix a typo in a comment.
Diffstat (limited to 'w32')
-rw-r--r--w32/compat/posixfcn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/w32/compat/posixfcn.c b/w32/compat/posixfcn.c
index 0a08c65..9acc1b2 100644
--- a/w32/compat/posixfcn.c
+++ b/w32/compat/posixfcn.c
@@ -229,7 +229,7 @@ same_stream (FILE *f1, FILE *f2)
/* Each process on Windows can have at most 1 console,
so if both handles are for the console device, they
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)
&& GetConsoleMode (fh2, &conmode2)
&& conmode1 == conmode2)