diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2003-07-25 13:52:46 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2003-07-25 13:52:46 (GMT) |
commit | 4cc883a96035714268d25ef5bb6d4df86ad25f2c (patch) | |
tree | fbf400093d2a8a82f8532a5720ade915128351e4 /src/H5E.c | |
parent | 23f22483b5de0e4c1042a72d45d94abfe3d95da8 (diff) | |
download | hdf5-4cc883a96035714268d25ef5bb6d4df86ad25f2c.zip hdf5-4cc883a96035714268d25ef5bb6d4df86ad25f2c.tar.gz hdf5-4cc883a96035714268d25ef5bb6d4df86ad25f2c.tar.bz2 |
[svn-r7263] Purpose: bug fix for C++ caused by new error api
Description: one variable was left out from checkin yesterday
Platforms tested: RH 8 with C++
Diffstat (limited to 'src/H5E.c')
-rw-r--r-- | src/H5E.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -341,7 +341,7 @@ hid_t H5E_ERR_CLS_g = FAIL; #endif /* NEW_ERR */ -#ifdef NEW_ERR +#ifndef NEW_ERR #ifdef H5_HAVE_THREADSAFE /* * The per-thread error stack. pthread_once() initializes a special |