diff options
author | David Young <dyoung@hdfgroup.org> | 2019-11-13 20:38:22 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2019-11-13 20:38:22 (GMT) |
commit | bf6b89c8414844b53497ff222f47e425345ad797 (patch) | |
tree | 0ca50a255a5d2cff4392dbdcce53671fb523f4d1 /src | |
parent | 7dcd36a37da595367e3a5d95ac87062df76ef717 (diff) | |
download | hdf5-bf6b89c8414844b53497ff222f47e425345ad797.zip hdf5-bf6b89c8414844b53497ff222f47e425345ad797.tar.gz hdf5-bf6b89c8414844b53497ff222f47e425345ad797.tar.bz2 |
Quiet decleration-after-statement warnings.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Rint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Rint.c b/src/H5Rint.c index 504ae06..9fbc7ef 100644 --- a/src/H5Rint.c +++ b/src/H5Rint.c @@ -1169,8 +1169,8 @@ H5R__encode_region(H5S_t *space, unsigned char *buf, size_t *nalloc) /* Don't encode if buffer size isn't big enough or buffer is empty */ if(buf && *nalloc >= ((size_t)buf_size + 2 * H5_SIZEOF_UINT32_T)) { - p = (uint8_t *)buf; int rank; + p = (uint8_t *)buf; /* Encode the size for safety check */ UINT32ENCODE(p, (uint32_t)buf_size); |