summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xexamples/testh5cc.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/testh5cc.sh.in b/examples/testh5cc.sh.in
index cd87e00..48a745c 100755
--- a/examples/testh5cc.sh.in
+++ b/examples/testh5cc.sh.in
@@ -117,8 +117,8 @@ EOF
# Generate HDF5 Main Program:
# An HDF5 sample program that calls hdf5 functions.
cat > $hdf5main <<EOF
-#include "hdf5.h"
#define H5_USE_16_API
+#include "hdf5.h"
#define H5FILE_NAME "tmp.h5"
int
main (void)
@@ -135,7 +135,7 @@ main (void)
printf("HDF5 C Sample program ran successfully. File %s generated.\n", H5FILE_NAME);
remove(H5FILE_NAME);
-
+
return 0;
}
EOF