diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-11-27 20:35:36 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2017-11-27 20:35:36 (GMT) |
commit | 4dfffe1c78c36b8633ef2f80f580feac787df8d6 (patch) | |
tree | e93efe342ecc2e7da27a7a68175efaa4468c8a05 /src/H5Dio.c | |
parent | f116545ce465181928ca97214b9cfa87092a3ee9 (diff) | |
parent | 9fdd984cdea6fce8b5fdd16a7ccc3cc9bbca6fed (diff) | |
download | hdf5-4dfffe1c78c36b8633ef2f80f580feac787df8d6.zip hdf5-4dfffe1c78c36b8633ef2f80f580feac787df8d6.tar.gz hdf5-4dfffe1c78c36b8633ef2f80f580feac787df8d6.tar.bz2 |
Merge pull request #798 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:misc_windows_warnings to develop
* commit '9fdd984cdea6fce8b5fdd16a7ccc3cc9bbca6fed':
Changed casts to const void *
Casted pointers to void to quiet warnings on Linux.
Added CHECK_PTR_EQ macro to testhdf5 to quiet cast warnings on Windows.
Fixed misc Warnings flagged by VS2017.
Diffstat (limited to 'src/H5Dio.c')
-rw-r--r-- | src/H5Dio.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5Dio.c b/src/H5Dio.c index 104a632..280d602 100644 --- a/src/H5Dio.c +++ b/src/H5Dio.c @@ -962,7 +962,9 @@ const io_info->using_mpi_vfd = H5F_HAS_FEATURE(dset->oloc.file, H5FD_FEAT_HAS_MPI); #endif /* H5_HAVE_PARALLEL */ -done: +#ifdef H5_DEBUG_BUILD + done: +#endif /* H5_DEBUG_BUILD */ FUNC_LEAVE_NOAPI(ret_value) } /* end H5D__ioinfo_init() */ |