summaryrefslogtreecommitdiffstats
path: root/tools/perform
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2015-10-26 08:10:12 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2015-10-26 08:10:12 (GMT)
commit51b29b6ab448895810d2c8a5fd396e37cd89a388 (patch)
treeed5005c1e8276bfef5c8a746860dd9f1856ae6a0 /tools/perform
parent8a1ca95768c7f4017372419432d370468421a617 (diff)
downloadhdf5-51b29b6ab448895810d2c8a5fd396e37cd89a388.zip
hdf5-51b29b6ab448895810d2c8a5fd396e37cd89a388.tar.gz
hdf5-51b29b6ab448895810d2c8a5fd396e37cd89a388.tar.bz2
[svn-r28218] Merge of r28138, 28196, and 28204 from trunk.
hbool_t changes Tested on: Ubuntu 15.04 (Linux 3.19 x86_64) gcc 4.9.2 serial w/ Fortran and C++ parallel (MPICH 3.1.4) w/ Fortran
Diffstat (limited to 'tools/perform')
-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 584a057..762a564 100644
--- a/tools/perform/pio_standalone.h
+++ b/tools/perform/pio_standalone.h
@@ -105,10 +105,10 @@ typedef off_t h5_stat_size_t;
* HDF Boolean type.
*/
#ifndef FALSE
-# define FALSE 0
+# define FALSE false
#endif
#ifndef TRUE
-# define TRUE 1
+# define TRUE true
#endif
diff --git a/tools/perform/sio_standalone.h b/tools/perform/sio_standalone.h
index 8f52eba..547a9ee 100644
--- a/tools/perform/sio_standalone.h
+++ b/tools/perform/sio_standalone.h
@@ -471,10 +471,10 @@ extern char *strdup(const char *s);
* HDF Boolean type.
*/
#ifndef FALSE
-# define FALSE 0
+# define FALSE false
#endif
#ifndef TRUE
-# define TRUE 1
+# define TRUE true
#endif
/** From h5test.h **/