diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-11-27 17:11:53 (GMT) |
---|---|---|
committer | M. Scot Breitenfeld <brtnfld@hdfgroup.org> | 2017-11-29 16:27:00 (GMT) |
commit | eeb1802055922417ca281ecc7822fbef50975f6d (patch) | |
tree | 20170027a54b07fdd094acd6bc9fc83508ac2ee3 | |
parent | fd5531e302aeff22f94f380bebc8a380a21cb120 (diff) | |
download | hdf5-eeb1802055922417ca281ecc7822fbef50975f6d.zip hdf5-eeb1802055922417ca281ecc7822fbef50975f6d.tar.gz hdf5-eeb1802055922417ca281ecc7822fbef50975f6d.tar.bz2 |
Casted pointers to void to quiet warnings on Linux.
-rw-r--r-- | test/testhdf5.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testhdf5.h b/test/testhdf5.h index 6244524..c36c4e1 100644 --- a/test/testhdf5.h +++ b/test/testhdf5.h @@ -90,7 +90,7 @@ } \ if (ret != val) { \ TestErrPrintf ("*** UNEXPECTED RETURN from %s: returned value of %p is not equal to %p line %4d in %s\n", \ - (where), ret, val, (int)__LINE__, __FILE__); \ + (where), (void *)(ret), (void *)(val), (int)__LINE__, __FILE__); \ H5Eprint2(H5E_DEFAULT, stdout); \ } \ } |