Revert "fix warnings from Intel compiler"

This reverts commit 8b9338ab57.
This commit is contained in:
kmu
2019-11-26 17:24:48 -06:00
committed by David Young
parent 3e4a99d17d
commit fb8f955a73
47 changed files with 100 additions and 120 deletions

View File

@@ -69,7 +69,7 @@ H5Z_filter_dynlibud(unsigned int flags, size_t cd_nelmts,
/* Subtract the original value with MULTIPLIER */
while(buf_left > 0) {
char temp = *int_ptr;
*int_ptr = (char)(temp - MULTIPLIER);
*int_ptr = temp - MULTIPLIER;
int_ptr++;
buf_left -= sizeof(*int_ptr);
} /* end while */
@@ -78,7 +78,7 @@ H5Z_filter_dynlibud(unsigned int flags, size_t cd_nelmts,
/* Add the original value with MULTIPLIER */
while(buf_left > 0) {
char temp = *int_ptr;
*int_ptr = (char)(temp + MULTIPLIER);
*int_ptr = temp + MULTIPLIER;
int_ptr++;
buf_left -= sizeof(*int_ptr);
} /* end while */