mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-01 16:28:09 +08:00
Casted pointers to void to quiet warnings on Linux.
This commit is contained in:
parent
fd5531e302
commit
eeb1802055
@ -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); \
|
||||
} \
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user