diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-10-24 19:55:16 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-10-24 19:55:16 (GMT) |
commit | ee54368066dd1a39b683689dd22e0e1f6eb11697 (patch) | |
tree | 49530b18ff0ccfba38e34de8fdfab87356b8181a /tools/src/h5import/h5import.h | |
parent | f8b5d40c7652f6ecdb2b491204e8288e8e01ab4b (diff) | |
download | hdf5-ee54368066dd1a39b683689dd22e0e1f6eb11697.zip hdf5-ee54368066dd1a39b683689dd22e0e1f6eb11697.tar.gz hdf5-ee54368066dd1a39b683689dd22e0e1f6eb11697.tar.bz2 |
TRILAB-82 fixed errors found in review
Diffstat (limited to 'tools/src/h5import/h5import.h')
-rw-r--r-- | tools/src/h5import/h5import.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/src/h5import/h5import.h b/tools/src/h5import/h5import.h index c55717d..00c41f6 100644 --- a/tools/src/h5import/h5import.h +++ b/tools/src/h5import/h5import.h @@ -102,8 +102,8 @@ struct Input struct infilesformat { - char datafile[255]; - char configfile[255]; + char datafile[MAX_PATH_NAME_LENGTH]; + char configfile[MAX_PATH_NAME_LENGTH]; struct Input in; int config; /* Configfile present? No - 0. Yes - 1 */ }; |