summaryrefslogtreecommitdiffstats
path: root/src/H5FLprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-08-10 03:39:43 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-08-10 03:39:43 (GMT)
commitcb60bf29361e7f21468cdc6900e68f8937f9fec5 (patch)
tree1b740bf7a0481498b1069e8f4f6dc56eaa874d37 /src/H5FLprivate.h
parent2bf4bc29cd1901bc90c079dc303373c4e07cc082 (diff)
downloadhdf5-cb60bf29361e7f21468cdc6900e68f8937f9fec5.zip
hdf5-cb60bf29361e7f21468cdc6900e68f8937f9fec5.tar.gz
hdf5-cb60bf29361e7f21468cdc6900e68f8937f9fec5.tar.bz2
[svn-r12560] Description:
Correct some typos in comments Testing: None needed
Diffstat (limited to 'src/H5FLprivate.h')
-rw-r--r--src/H5FLprivate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5FLprivate.h b/src/H5FLprivate.h
index 1e0e3b6..8297fe9 100644
--- a/src/H5FLprivate.h
+++ b/src/H5FLprivate.h
@@ -249,7 +249,7 @@ typedef struct H5FL_arr_head_t {
*/
#define H5FL_ARR_NAME(t) H5_##t##_arr_free_list
#ifndef H5_NO_ARR_FREE_LISTS
-/* Common macro for H5FL_BLK_DEFINE & H5FL_BLK_DEFINE_STATIC */
+/* Common macro for H5FL_ARR_DEFINE & H5FL_ARR_DEFINE_STATIC (and H5FL_BARR variants) */
#define H5FL_ARR_DEFINE_COMMON(b,t,m) H5FL_arr_head_t H5FL_ARR_NAME(t)={0,0,0,#t"_arr",m+1,b,sizeof(t),NULL}
/* Declare a free list to manage arrays of type 't' */
@@ -280,7 +280,7 @@ typedef struct H5FL_arr_head_t {
#define H5FL_ARR_REALLOC(t,obj,new_elem) H5FL_arr_realloc(&(H5FL_ARR_NAME(t)),obj,new_elem)
#else /* H5_NO_ARR_FREE_LISTS */
-/* Common macro for H5FL_ARR_DEFINE & H5FL_ARR_DEFINE_STATIC */
+/* Common macro for H5FL_ARR_DEFINE & H5FL_ARR_DEFINE_STATIC (and H5FL_BARR variants) */
#define H5FL_ARR_DEFINE_COMMON(t,m) size_t H5FL_ARR_NAME(t)
#define H5FL_ARR_DEFINE(t,m) H5_DLL H5FL_ARR_DEFINE_COMMON(t,m) = 0
@@ -333,7 +333,7 @@ typedef struct H5FL_seq_head_t {
#define H5FL_SEQ_REALLOC(t,obj,new_elem) (t *)H5FL_seq_realloc(&(H5FL_SEQ_NAME(t)),obj,new_elem H5FL_TRACK_INFO)
#else /* H5_NO_SEQ_FREE_LISTS */
-/* Common macro for H5FL_BLK_DEFINE & H5FL_BLK_DEFINE_STATIC */
+/* Common macro for H5FL_SEQ_DEFINE & H5FL_SEQ_DEFINE_STATIC */
#define H5FL_SEQ_DEFINE_COMMON(t) int H5FL_SEQ_NAME(t)
#define H5FL_SEQ_DEFINE(t) H5_DLL H5FL_SEQ_DEFINE_COMMON(t)