summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-03-05 22:23:16 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-03-05 22:23:16 (GMT)
commit98c092af39d78d33f41e8db7f294163e20ad7dbf (patch)
treeeab414bc9a5216b5f54f02f74c82e6048c5f08c5 /tools
parent30920d3902a48fa3bd21997fa4ebc1ea3389107c (diff)
downloadhdf5-98c092af39d78d33f41e8db7f294163e20ad7dbf.zip
hdf5-98c092af39d78d33f41e8db7f294163e20ad7dbf.tar.gz
hdf5-98c092af39d78d33f41e8db7f294163e20ad7dbf.tar.bz2
Revert incorrect bool type
Diffstat (limited to 'tools')
-rw-r--r--tools/perform/pio_standalone.h4
-rw-r--r--tools/perform/sio_standalone.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/tools/perform/pio_standalone.h b/tools/perform/pio_standalone.h
index cf6d980..deebd4d 100644
--- a/tools/perform/pio_standalone.h
+++ b/tools/perform/pio_standalone.h
@@ -470,10 +470,10 @@ extern char *strdup(const char *s);
* HDF Boolean type.
*/
#ifndef FALSE
-# define FALSE false
+# define FALSE 0
#endif
#ifndef TRUE
-# define TRUE true
+# define TRUE 1
#endif
/** From h5test.h **/
diff --git a/tools/perform/sio_standalone.h b/tools/perform/sio_standalone.h
index 45f6d25..4743a42 100644
--- a/tools/perform/sio_standalone.h
+++ b/tools/perform/sio_standalone.h
@@ -485,10 +485,10 @@ extern char *strdup(const char *s);
* HDF Boolean type.
*/
#ifndef FALSE
-# define FALSE false
+# define FALSE 0
#endif
#ifndef TRUE
-# define TRUE true
+# define TRUE 1
#endif
/** From h5test.h **/