diff --git a/src/h5core/h5_log.c b/src/h5core/h5_log.c index cc766a1..089afb2 100644 --- a/src/h5core/h5_log.c +++ b/src/h5core/h5_log.c @@ -15,29 +15,29 @@ h5_int32_t h5_log_level = H5_VERBOSE_ERROR; struct call_stack h5_call_stack; char *h5_rfmts[] = { - [e_int] "%d", - [e_ssize_t] "%ld", - [e_char_p] "%s", - [e_void_p] "%p", - [e_h5_err_t] "%lld", - [e_h5_int64_t] "%lld", - [e_h5_id_t] "%lld", - [e_h5_ssize_t] "%lld", - [e_h5_errorhandler_t] "%p", - [e_h5_file_p] "%p", - [e_h5_file_t] "0x%08x", - [e_h5_lvl_idx_t] "%d", - [e_h5t_iterator_p] "%p", - [e_h5_loc_id_t] "%ld", - [e_h5_loc_idx_t] "%ld", - [e_hid_t] "%lld", - [e_H5O_type_t] "%ld", - [e_h5_glb_elem_p] "%p", - [e_h5_prop_p] "%p", - [e_h5_prop_t] "0x%08x", - [e_h5_prop_file_p] "%p", - [e_h5_prop_file_t] "0x%08x", - [e_herr_t] "%ld" + [e_int] = "%d", + [e_ssize_t] = "%ld", + [e_char_p] = "%s", + [e_void_p] = "%p", + [e_h5_err_t] = "%lld", + [e_h5_int64_t] = "%lld", + [e_h5_id_t] = "%lld", + [e_h5_ssize_t] = "%lld", + [e_h5_errorhandler_t] = "%p", + [e_h5_file_p] = "%p", + [e_h5_file_t] = "0x%08x", + [e_h5_lvl_idx_t] = "%d", + [e_h5t_iterator_p] = "%p", + [e_h5_loc_id_t] = "%ld", + [e_h5_loc_idx_t] = "%ld", + [e_hid_t] = "%lld", + [e_H5O_type_t] = "%ld", + [e_h5_glb_elem_p] = "%p", + [e_h5_prop_p] = "%p", + [e_h5_prop_t] = "0x%08x", + [e_h5_prop_file_p] = "%p", + [e_h5_prop_file_t] = "0x%08x", + [e_herr_t] = "%ld" }; /*!