diff options
Diffstat (limited to 'src/H5Zdevelop.h')
-rw-r--r-- | src/H5Zdevelop.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Zdevelop.h b/src/H5Zdevelop.h index ae9f8ef..a7f332b 100644 --- a/src/H5Zdevelop.h +++ b/src/H5Zdevelop.h @@ -39,7 +39,7 @@ */ typedef struct H5Z_cb_t { H5Z_filter_func_t func; - void * op_data; + void *op_data; } H5Z_cb_t; /** @@ -161,7 +161,7 @@ typedef struct H5Z_class2_t { H5Z_filter_t id; /**< Filter ID number */ unsigned encoder_present; /**< Does this filter have an encoder? */ unsigned decoder_present; /**< Does this filter have a decoder? */ - const char * name; /**< Comment for debugging */ + const char *name; /**< Comment for debugging */ H5Z_can_apply_func_t can_apply; /**< The "can apply" callback for a filter */ H5Z_set_local_func_t set_local; /**< The "set local" callback for a filter */ H5Z_func_t filter; /**< The actual filter function */ @@ -436,7 +436,7 @@ H5_DLL herr_t H5Zunregister(H5Z_filter_t id); //! <!-- [H5Z_class1_t_snip] --> typedef struct H5Z_class1_t { H5Z_filter_t id; /**< Filter ID number */ - const char * name; /**< Comment for debugging */ + const char *name; /**< Comment for debugging */ H5Z_can_apply_func_t can_apply; /**< The "can apply" callback for a filter */ H5Z_set_local_func_t set_local; /**< The "set local" callback for a filter */ H5Z_func_t filter; /**< The actual filter function */ |