From: Eli Zaretskii Date: Mon, 16 Sep 2013 08:42:20 +0000 (+0300) Subject: Fix a typo in a comment. X-Git-Tag: 3.99.92~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a6205b43f6224dfaa759ce73d7b1c9772b6d645;p=thirdparty%2Fmake.git Fix a typo in a comment. --- diff --git a/w32/compat/posixfcn.c b/w32/compat/posixfcn.c index 0a08c652..9acc1b28 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)