From fc9911e5f202d08ca41dc8603852e2abc47acfd7 Mon Sep 17 00:00:00 2001 From: runkharr Date: Fri, 13 Apr 2018 04:34:18 +0200 Subject: [PATCH] src/compiler/OPT.Mod: TYPO-fix ('NAME_LEN' => 'NAME_MAX' (in a comment)) ... --- src/compiler/OPT.Mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/OPT.Mod b/src/compiler/OPT.Mod index 403e0377..ffb92431 100644 --- a/src/compiler/OPT.Mod +++ b/src/compiler/OPT.Mod @@ -1376,7 +1376,7 @@ BEGIN topScope := NIL; OpenScope(0, NIL); OPM.errpos := 0; (* POSIX systems normally support PATH_MAX *) EnterIntConst("MAXPATHLEN", Configuration.MaxPathLen); (*PATH_MAX - 1*) - EnterIntConst("MAXFILENAMELEN", Configuration.MaxFnLen); (*NAME_LEN*) + EnterIntConst("MAXFILENAMELEN", Configuration.MaxFnLen); (*NAME_MAX*) syslink := topScope^.right; universe := topScope; topScope^.right := NIL;