summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/H5FDs3comms.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDs3comms.c b/src/H5FDs3comms.c
index 7c5ff1d..9d6d30a 100644
--- a/src/H5FDs3comms.c
+++ b/src/H5FDs3comms.c
@@ -2756,7 +2756,7 @@ H5FD_s3comms_trim(char *dest, char *s, size_t s_len, size_t *n_written)
/* Find first non-whitespace character from start;
* reduce total length per character.
*/
- while ((s_len > 0) && isspace((unsigned char)s[0]) && s_len > 0) {
+ while (s_len > 0 && isspace((unsigned char)s[0])) {
s++;
s_len--;
}