src/compiler/OPT.Mod: TYPO-fix ('NAME_LEN' => 'NAME_MAX' (in a comment)) ...

This commit is contained in:
runkharr 2018-04-13 04:34:18 +02:00
parent 8675fbf5f4
commit fc9911e5f2

View file

@ -1376,7 +1376,7 @@ BEGIN topScope := NIL; OpenScope(0, NIL); OPM.errpos := 0;
(* POSIX systems normally support PATH_MAX *) (* POSIX systems normally support PATH_MAX *)
EnterIntConst("MAXPATHLEN", Configuration.MaxPathLen); (*PATH_MAX - 1*) EnterIntConst("MAXPATHLEN", Configuration.MaxPathLen); (*PATH_MAX - 1*)
EnterIntConst("MAXFILENAMELEN", Configuration.MaxFnLen); (*NAME_LEN*) EnterIntConst("MAXFILENAMELEN", Configuration.MaxFnLen); (*NAME_MAX*)
syslink := topScope^.right; syslink := topScope^.right;
universe := topScope; topScope^.right := NIL; universe := topScope; topScope^.right := NIL;