maxlength to 256

This commit is contained in:
edoapra 2022-02-08 16:39:04 -08:00
parent 58f4b6f021
commit 9bf5c3fcbf
No known key found for this signature in database
GPG key ID: 472C4EBB4F3AEDFA
2 changed files with 2 additions and 2 deletions

View file

@ -29,5 +29,5 @@ c
external util_get_io_unit
c
integer nw_max_path_len ! Maximum path len -> posix standard is what?
parameter (nw_max_path_len = 255)
parameter (nw_max_path_len = 256)
c

View file

@ -14,7 +14,7 @@ C> interface that can simply be called from the Fortran code without
C> having to pull any stunts.
C>
subroutine util_nwchem_srcdir(pathname)
#define MAXLENGTH 255
#define MAXLENGTH 256
#ifdef NWCHEM_LONG_PATHS
USE ISO_C_BINDING
#endif