summaryrefslogtreecommitdiffstats
path: root/examples/h5_reference.c
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2001-06-05 18:00:37 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2001-06-05 18:00:37 (GMT)
commite8ed850fa86f3854f7abf6958268469c163d4ff9 (patch)
tree349739135b958ead298c186c6092a6c283d0aa9a /examples/h5_reference.c
parent5fcefe52a26e265ab426ecc692bcf1e5cf8adb3f (diff)
downloadhdf5-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_reference.c')
-rw-r--r--examples/h5_reference.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/h5_reference.c b/examples/h5_reference.c
index 4399bfc..8445bb6 100644
--- a/examples/h5_reference.c
+++ b/examples/h5_reference.c
@@ -12,7 +12,7 @@
#include "hdf5.h"
-#define FILE "refere.h5"
+#define H5FILE_NAME "refere.h5"
int
main(void) {
@@ -32,7 +32,7 @@ main(void) {
/*
* Create a file using default properties.
*/
- fid = H5Fcreate(FILE, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
+ fid = H5Fcreate(H5FILE_NAME, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
/*
* Create group "A" in the file.
@@ -91,7 +91,7 @@ main(void) {
/*
* Reopen the file.
*/
- fid = H5Fopen(FILE, H5F_ACC_RDWR, H5P_DEFAULT);
+ fid = H5Fopen(H5FILE_NAME, H5F_ACC_RDWR, H5P_DEFAULT);
/*
* Open and read dataset "R".