summaryrefslogtreecommitdiffstats
path: root/hl
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@lbl.gov>2019-06-29 00:30:41 (GMT)
committerQuincey Koziol <koziol@lbl.gov>2019-06-29 00:30:41 (GMT)
commitf97ea92fe5450cefd4c4d9fb266e7f42a952f2f9 (patch)
treea90c9464b052898428c596e7c085683024141890 /hl
parent13d951d37205bcd48723330a898e5d67c5e1ecb2 (diff)
parent6ced6457c3048bd10bf6f470b329b4810d9be826 (diff)
downloadhdf5-f97ea92fe5450cefd4c4d9fb266e7f42a952f2f9.zip
hdf5-f97ea92fe5450cefd4c4d9fb266e7f42a952f2f9.tar.gz
hdf5-f97ea92fe5450cefd4c4d9fb266e7f42a952f2f9.tar.bz2
Merge pull request #1784 in HDFFV/hdf5 from ~KOZIOL/hdf5:feature/update_gcc_flags to develop
* commit '6ced6457c3048bd10bf6f470b329b4810d9be826': Move the -Wformat-nonliteral warning to the developer flags. Fix bugs I introduced in the last commit. Updated configure & CMake compiler flags for GCC 8.x, along with corresponding changes to warnhist script (and some extra improvements for condensing C++ and Java warnings), and fixed a bunch of warnings.
Diffstat (limited to 'hl')
-rw-r--r--hl/src/H5LT.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hl/src/H5LT.c b/hl/src/H5LT.c
index 3ebca95..bb72ce6 100644
--- a/hl/src/H5LT.c
+++ b/hl/src/H5LT.c
@@ -2423,9 +2423,9 @@ print_enum(hid_t type, char* str, size_t *str_len, hbool_t no_ubuf, size_t indt)
goto out;
if (H5T_SGN_NONE == H5Tget_sign(native))
- HDsnprintf(tmp_str, TMP_LEN, "%u", *((unsigned int*)(value + (size_t)i * dst_size)));
+ HDsnprintf(tmp_str, TMP_LEN, "%u", *((unsigned int *)((void *)(value + (size_t)i * dst_size))));
else
- HDsnprintf(tmp_str, TMP_LEN, "%d", *((int*)(value + (size_t)i * dst_size)));
+ HDsnprintf(tmp_str, TMP_LEN, "%d", *((int *)((void *)(value + (size_t)i * dst_size))));
if(!(str = realloc_and_append(no_ubuf, str_len, str, tmp_str)))
goto out;