diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-06-26 17:44:39 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-06-26 17:44:39 (GMT) |
commit | 4a9a1c90f3d1a398e7525034b1311696affb9d6d (patch) | |
tree | 783ae3d89177e95cb24eebda405267b891361e58 /src/H5MMpublic.h | |
parent | 21134e48e135c03ecad8dc35ea5dd803e0e9690b (diff) | |
download | hdf5-4a9a1c90f3d1a398e7525034b1311696affb9d6d.zip hdf5-4a9a1c90f3d1a398e7525034b1311696affb9d6d.tar.gz hdf5-4a9a1c90f3d1a398e7525034b1311696affb9d6d.tar.bz2 |
[svn-r13917] Description:
Code & warning cleanups
Tested on:
Mac OS X/32 10.4.10 (amazon)
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5MMpublic.h')
-rw-r--r-- | src/H5MMpublic.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/H5MMpublic.h b/src/H5MMpublic.h index ee730ec..bfcb807 100644 --- a/src/H5MMpublic.h +++ b/src/H5MMpublic.h @@ -33,8 +33,8 @@ #include "H5public.h" /* These typedefs are currently used for VL datatype allocation/freeing */ -typedef void *(* H5MM_allocate_t)(size_t size,void *info); -typedef void (* H5MM_free_t)(void *mem, void *free_info); +typedef void *(*H5MM_allocate_t)(size_t size, void *alloc_info); +typedef void (*H5MM_free_t)(void *mem, void *free_info); #ifdef __cplusplus extern "C" { @@ -43,4 +43,5 @@ extern "C" { #ifdef __cplusplus } #endif -#endif +#endif /* _H5MMpublic_H */ + |