diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-04-16 16:17:42 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-04-16 16:17:42 (GMT) |
commit | 3c5faf9fb63a303b959d7f2c790ee31485daefa2 (patch) | |
tree | d5de7746c65e34b5cddce056bc758c5493315253 /src | |
parent | dd6c600f72d288323ba694e1214c9503cd964e9e (diff) | |
download | hdf5-3c5faf9fb63a303b959d7f2c790ee31485daefa2.zip hdf5-3c5faf9fb63a303b959d7f2c790ee31485daefa2.tar.gz hdf5-3c5faf9fb63a303b959d7f2c790ee31485daefa2.tar.bz2 |
[svn-r10618] Purpose:
Bug fix
Description:
Correct typo in "base array" free list macro when free list macros are
disabled.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Solaris 2.9 (shanti)
Too minor to require h5committest
Diffstat (limited to 'src')
-rw-r--r-- | src/H5FLprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FLprivate.h b/src/H5FLprivate.h index ba26146..4c8fa94 100644 --- a/src/H5FLprivate.h +++ b/src/H5FLprivate.h @@ -249,7 +249,7 @@ typedef struct H5FL_arr_head_t { #define H5FL_BARR_DEFINE(b,t,m) H5_DLL H5FL_ARR_DEFINE_COMMON(t,m) = sizeof(b) #define H5FL_ARR_EXTERN(t) extern H5_DLL H5FL_ARR_DEFINE_COMMON(t,m) #define H5FL_ARR_DEFINE_STATIC(t,m) static H5FL_ARR_DEFINE_COMMON(t,m) = 0 -#define H5FL_BARR_DEFINE_STATIC(t,m) static H5FL_ARR_DEFINE_COMMON(t,m) = sizeof(b) +#define H5FL_BARR_DEFINE_STATIC(b,t,m) static H5FL_ARR_DEFINE_COMMON(t,m) = sizeof(b) #define H5FL_ARR_MALLOC(t,elem) H5MM_malloc(H5FL_ARR_NAME(t) + ((elem)*sizeof(t))) #define H5FL_ARR_CALLOC(t,elem) H5MM_calloc(H5FL_ARR_NAME(t) + ((elem)*sizeof(t))) #define H5FL_ARR_FREE(t,obj) H5MM_xfree(obj) |