diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2021-05-24 13:53:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-24 13:53:24 (GMT) |
commit | bee09040d39d265d28b230735e28c3603a5da217 (patch) | |
tree | 17815ad7874f496e9c8fe8c47df67d04d30ecc93 /src | |
parent | 2142359709a65de6669d76c33c7574202e6909c8 (diff) | |
download | hdf5-bee09040d39d265d28b230735e28c3603a5da217.zip hdf5-bee09040d39d265d28b230735e28c3603a5da217.tar.gz hdf5-bee09040d39d265d28b230735e28c3603a5da217.tar.bz2 |
Fixes for a couple of trivial warnings (#676)
* Committing clang-format changes
* Trivial warning fixes:
* Removes an unused done target in H5Tbit.c
* Add (void) to quiet "ignored return value" warnings in the generators
(which generally ignore errors)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Tbit.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/H5Tbit.c b/src/H5Tbit.c index 9f0c061..04e2a97 100644 --- a/src/H5Tbit.c +++ b/src/H5Tbit.c @@ -268,7 +268,6 @@ H5T__bit_get_d(uint8_t *buf, size_t offset, size_t size) /* Set return value */ ret_value = val; -done: FUNC_LEAVE_NOAPI(ret_value) } /* end H5T__bit_get_d() */ |