diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-02-17 02:51:21 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-02-17 02:51:21 (GMT) |
commit | b8dbd390db9b47e73c6120ba61724b1e20ab333d (patch) | |
tree | 1fbcef76bf2cc480c2a57e5e26b599f82d85bc7c /src/H5FLprivate.h | |
parent | 855aa23823a1091262524773626de3d920838e72 (diff) | |
download | hdf5-b8dbd390db9b47e73c6120ba61724b1e20ab333d.zip hdf5-b8dbd390db9b47e73c6120ba61724b1e20ab333d.tar.gz hdf5-b8dbd390db9b47e73c6120ba61724b1e20ab333d.tar.bz2 |
[svn-r4978] Purpose:
Code cleanup
Description:
Cleanup compiler warnings found by the SGI compiler and gcc 3.0
Platforms tested:
FreeBSD 4.5 w/gcc 3.0 (hack) && IRIX64 (modi4)
Diffstat (limited to 'src/H5FLprivate.h')
-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 ff89487..e531d0c 100644 --- a/src/H5FLprivate.h +++ b/src/H5FLprivate.h @@ -140,7 +140,7 @@ typedef struct H5FL_arr_head_t { * Macros for defining & using free lists for an array of a type */ /* Declare a free list to manage arrays of type 't' */ -#define H5FL_ARR_DEFINE(t,m) H5FL_arr_head_t t##_arr_free_list={0,0,NULL,0,#t##"_arr",m+1,sizeof(t),{NULL}} +#define H5FL_ARR_DEFINE(t,m) H5FL_arr_head_t t##_arr_free_list={0,0,NULL,0,#t"_arr",m+1,sizeof(t),{NULL}} /* Reference a free list for arrays of type 't' defined in another file */ #define H5FL_ARR_EXTERN(t) extern H5FL_arr_head_t t##_arr_free_list |