summaryrefslogtreecommitdiffstats
path: root/src/H5Dchunk.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2024-03-10 23:17:49 (GMT)
committerGitHub <noreply@github.com>2024-03-10 23:17:49 (GMT)
commit9bc6c201666aa7fcd7937db7241d4074b67824c9 (patch)
treeef52725207dc59d5723e99195d90cab7ac8a1a53 /src/H5Dchunk.c
parent7403f2075781dbaf103b4d90f60695b892bca29f (diff)
downloadhdf5-9bc6c201666aa7fcd7937db7241d4074b67824c9.zip
hdf5-9bc6c201666aa7fcd7937db7241d4074b67824c9.tar.gz
hdf5-9bc6c201666aa7fcd7937db7241d4074b67824c9.tar.bz2
Remove lint comments (#4107)
Diffstat (limited to 'src/H5Dchunk.c')
-rw-r--r--src/H5Dchunk.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/H5Dchunk.c b/src/H5Dchunk.c
index 05d9fe6..173f390 100644
--- a/src/H5Dchunk.c
+++ b/src/H5Dchunk.c
@@ -1976,9 +1976,8 @@ H5D__create_piece_file_map_hyper(H5D_dset_io_info_t *dinfo, H5D_io_info_t *io_in
do {
/* Reset current dimension's location to 0 */
scaled[curr_dim] = start_scaled[curr_dim];
- coords[curr_dim] =
- start_coords[curr_dim]; /*lint !e771 The start_coords will always be initialized */
- end[curr_dim] = (coords[curr_dim] + fm->chunk_dim[curr_dim]) - 1;
+ coords[curr_dim] = start_coords[curr_dim];
+ end[curr_dim] = (coords[curr_dim] + fm->chunk_dim[curr_dim]) - 1;
/* Decrement current dimension */
curr_dim--;