src/h5core/h5_log.c

- warning in initialization of 'h5_rfmts' fixed
This commit is contained in:
2018-02-01 15:25:27 +01:00
parent 11ab169164
commit 792e86e01e
+23 -23
View File
@@ -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"
};
/*!