diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-11-27 17:11:53 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2017-11-27 17:11:53 (GMT) |
commit | 8d8dc867a4919af7774a73fbd90633dcd4c1a4ed (patch) | |
tree | 291d4a99218f4f409b9d4c63a188159a6c30a732 /test | |
parent | 856e475c47ffd66668d2f868817357b4354f164b (diff) | |
download | hdf5-8d8dc867a4919af7774a73fbd90633dcd4c1a4ed.zip hdf5-8d8dc867a4919af7774a73fbd90633dcd4c1a4ed.tar.gz hdf5-8d8dc867a4919af7774a73fbd90633dcd4c1a4ed.tar.bz2 |
Casted pointers to void to quiet warnings on Linux.
Diffstat (limited to 'test')
-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); \ } \ } |