summaryrefslogtreecommitdiff
path: root/src/remake.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2022-12-31 13:21:09 -0500
committerPaul Smith <psmith@gnu.org>2022-12-31 13:21:09 -0500
commitc91b269f66126ae88cec99c25c39816be97aeaa0 (patch)
tree22466720b32f61a8ecaf08ad221af88ba92fa4d4 /src/remake.c
parent29f453739f0059f632ce2963ca0c68f8bf6c5991 (diff)
downloadmake-git-c91b269f66126ae88cec99c25c39816be97aeaa0.tar.gz
Apply spelling fixes discovered by Codespell
* maintMakefile: Apply spelling fixes. * src/file.c: Ditto. * src/misc.c: Ditto. * src/remake.c: Ditto. * src/vmsjobs.c: Ditto. * src/w32/pathstuff.c: Ditto. * tests/test_driver.pl: Ditto. * tests/run_make_tests.com: Ditto * tests/scripts/features/implicit_search: Ditto * tests/scripts/features/output-sync: Ditto * tests/scripts/features/patternrules: Ditto * tests/scripts/features/se_explicit: Ditto * tests/scripts/features/statipattrules: Ditto * tests/scripts/functions/foreach: Ditto * tests/scripts/variables/MAKEFLAGS: Ditto
Diffstat (limited to 'src/remake.c')
-rw-r--r--src/remake.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remake.c b/src/remake.c
index 7ba606cb..cac8e7e8 100644
--- a/src/remake.c
+++ b/src/remake.c
@@ -38,7 +38,7 @@ this program. If not, see <https://www.gnu.org/licenses/>. */
#include <io.h>
#include <sys/stat.h>
#if defined(_MSC_VER) && _MSC_VER > 1200
-/* VC7 or later supprots _stat64 to access 64-bit file size. */
+/* VC7 or later supports _stat64 to access 64-bit file size. */
#define STAT _stat64
#else
#define STAT stat