mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-23 16:20:57 +08:00
Cleans up a const warning left over from previous constification (#633)
* Committing clang-format changes * Adds consts to a few global variables * Cleans up a const warning left over from previous constification Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
6955329054
commit
1e572b18e3
@ -79,10 +79,10 @@ typedef struct H5C_log_class_t {
|
||||
|
||||
/* Logging information */
|
||||
struct H5C_log_info_t {
|
||||
hbool_t enabled; /* Was the logging set up? */
|
||||
hbool_t logging; /* Are we currently logging? */
|
||||
H5C_log_class_t *cls; /* Callbacks for writing log messages */
|
||||
void * udata; /* Log-specific data */
|
||||
hbool_t enabled; /* Was the logging set up? */
|
||||
hbool_t logging; /* Are we currently logging? */
|
||||
const H5C_log_class_t *cls; /* Callbacks for writing log messages */
|
||||
void * udata; /* Log-specific data */
|
||||
};
|
||||
|
||||
/*****************************/
|
||||
|
Loading…
Reference in New Issue
Block a user