diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1999-12-20 15:14:05 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1999-12-20 15:14:05 (GMT) |
commit | f6fffd7da8475e93554b07943d32fe5364ea3030 (patch) | |
tree | 67b6bc44b0dc3fe97a0aa91b0363afb1c803389c /src/H5FDmulti.c | |
parent | 4ae42f7f15837b1496ce001d7ac9c42e73893cd9 (diff) | |
download | hdf5-f6fffd7da8475e93554b07943d32fe5364ea3030.zip hdf5-f6fffd7da8475e93554b07943d32fe5364ea3030.tar.gz hdf5-f6fffd7da8475e93554b07943d32fe5364ea3030.tar.bz2 |
[svn-r1916] Changed the #define TRUE to be consistent with the one in H5private.h
which is also used by most Unix systems.
Diffstat (limited to 'src/H5FDmulti.c')
-rw-r--r-- | src/H5FDmulti.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDmulti.c b/src/H5FDmulti.c index 73ceb74..ace79ee 100644 --- a/src/H5FDmulti.c +++ b/src/H5FDmulti.c @@ -31,7 +31,7 @@ #define FALSE 0 #endif #ifndef TRUE -#define TRUE 1 +#define TRUE (!FALSE) #endif /* Loop through all mapped files */ |