diff options
author | Jacob Smith <jake.smith@hdfgroup.org> | 2018-12-28 16:17:09 (GMT) |
---|---|---|
committer | Jacob Smith <jake.smith@hdfgroup.org> | 2018-12-28 16:17:09 (GMT) |
commit | 30493ce9b95cd8d5999743f8f84be6c5c86db897 (patch) | |
tree | 5545da4b5a1d69d4a351e59512a4cd1f254a17ca /src | |
parent | 29497cc4e1cfaaf0bce7d1234fdd0b847f4194b6 (diff) | |
download | hdf5-30493ce9b95cd8d5999743f8f84be6c5c86db897.zip hdf5-30493ce9b95cd8d5999743f8f84be6c5c86db897.tar.gz hdf5-30493ce9b95cd8d5999743f8f84be6c5c86db897.tar.bz2 |
Specify variable type.
Remove unnecessary whitespace.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Pdcpl.c | 2 | ||||
-rw-r--r-- | src/H5VLnative.c | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/H5Pdcpl.c b/src/H5Pdcpl.c index 8762eff..b85f105 100644 --- a/src/H5Pdcpl.c +++ b/src/H5Pdcpl.c @@ -214,7 +214,7 @@ static const H5O_layout_t H5D_def_layout_g = H5D_CRT_LAYOUT_DEF; /* Defau static const H5O_fill_t H5D_def_fill_g = H5D_CRT_FILL_VALUE_DEF; /* Default fill value */ static const unsigned H5D_def_alloc_time_state_g = H5D_CRT_ALLOC_TIME_STATE_DEF; /* Default allocation time state */ static const H5O_efl_t H5D_def_efl_g = H5D_CRT_EXT_FILE_LIST_DEF; /* Default external file list */ -static const H5O_ohdr_min_g = H5D_CRT_MIN_DSET_HDR_SIZE_DEF; /* Default object header minimization */ +static const unsigned H5O_ohdr_min_g = H5D_CRT_MIN_DSET_HDR_SIZE_DEF; /* Default object header minimization */ /* Defaults for each type of layout */ #ifdef H5_HAVE_C99_DESIGNATED_INITIALIZER diff --git a/src/H5VLnative.c b/src/H5VLnative.c index 360c46f..fe0fd4e 100644 --- a/src/H5VLnative.c +++ b/src/H5VLnative.c @@ -169,4 +169,3 @@ H5VL__native_term(void) FUNC_LEAVE_NOAPI(SUCCEED) } /* end H5VL__native_term() */ - |