diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2001-06-05 18:00:37 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2001-06-05 18:00:37 (GMT) |
commit | e8ed850fa86f3854f7abf6958268469c163d4ff9 (patch) | |
tree | 349739135b958ead298c186c6092a6c283d0aa9a /examples/h5_extend_write.c | |
parent | 5fcefe52a26e265ab426ecc692bcf1e5cf8adb3f (diff) | |
download | hdf5-e8ed850fa86f3854f7abf6958268469c163d4ff9.zip hdf5-e8ed850fa86f3854f7abf6958268469c163d4ff9.tar.gz hdf5-e8ed850fa86f3854f7abf6958268469c163d4ff9.tar.bz2 |
[svn-r3959]
Purpose:
Bug fix
Description:
All examples used "FILE" string in the #define preprocessor
directive. That caused error on Windows platforms since
FILE is a structure returned by fopen calls.
Solution:
Changed "FILE" to "H5FILE_NAME"
Platforms tested:
Linux (eirene)
Diffstat (limited to 'examples/h5_extend_write.c')
-rw-r--r-- | examples/h5_extend_write.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/h5_extend_write.c b/examples/h5_extend_write.c index c6aa37c..4fd404c 100644 --- a/examples/h5_extend_write.c +++ b/examples/h5_extend_write.c @@ -7,7 +7,7 @@ #include "hdf5.h" -#define FILE "SDSextendible.h5" +#define H5FILE_NAME "SDSextendible.h5" #define DATASETNAME "ExtendibleArray" #define RANK 2 #define NX 10 @@ -52,7 +52,7 @@ main (void) /* * Create a new file. If file exists its contents will be overwritten. */ - file = H5Fcreate(FILE, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); + file = H5Fcreate(H5FILE_NAME, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); /* * Modify dataset creation properties, i.e. enable chunking. |