Casted pointers to void to quiet warnings on Linux.

This commit is contained in:
Dana Robinson 2017-11-27 09:11:53 -08:00 committed by M. Scot Breitenfeld
parent fd5531e302
commit eeb1802055

View File

@ -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); \
} \
}