diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2020-08-15 14:32:50 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2020-08-15 14:32:50 (GMT) |
commit | c5b176594082f6e5a8b6d9140f9db1f13530e087 (patch) | |
tree | dbc7c9953186480ad266c7010d81c15dce7b3e17 /src/H5Z.c | |
parent | 044ee6f88c78a70eb3694d8c73fa74c77fde9689 (diff) | |
download | hdf5-c5b176594082f6e5a8b6d9140f9db1f13530e087.zip hdf5-c5b176594082f6e5a8b6d9140f9db1f13530e087.tar.gz hdf5-c5b176594082f6e5a8b6d9140f9db1f13530e087.tar.bz2 |
Trivialities noticed while merging things to 1.10
Diffstat (limited to 'src/H5Z.c')
-rw-r--r-- | src/H5Z.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -346,8 +346,8 @@ done: * * Purpose: This function unregisters a filter. * - * Return: SUCCEED/FAIL - * + * Return: Non-negative on success + * Negative on failure *------------------------------------------------------------------------- */ herr_t @@ -1340,7 +1340,7 @@ H5Z_pipeline(const H5O_pline_t *pline, unsigned flags, fstats->stats[1].times.system += times.system; fstats->stats[1].times.user += times.user; - fstats->stats[1].total += MAX(*nbytes, new_nbytes); + fstats->stats[1].total += MAX(*nbytes, new_nbytes); if(0 == new_nbytes) fstats->stats[1].errors += *nbytes; #endif |