diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-09-29 16:54:00 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-09-29 16:54:00 (GMT) |
commit | f1917f0754c21298006162c391d6725983ed8649 (patch) | |
tree | 38d11d02f409bd6b6cd4062043603c161ea5e71c /tools/h5ls.c | |
parent | 21b0e20bf7f863af4d0dbdc5e59a787e9e43f5a0 (diff) | |
download | hdf5-f1917f0754c21298006162c391d6725983ed8649.zip hdf5-f1917f0754c21298006162c391d6725983ed8649.tar.gz hdf5-f1917f0754c21298006162c391d6725983ed8649.tar.bz2 |
[svn-r1693] removed the last warnings from here
Diffstat (limited to 'tools/h5ls.c')
-rw-r--r-- | tools/h5ls.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5ls.c b/tools/h5ls.c index 9beb469..191445a 100644 --- a/tools/h5ls.c +++ b/tools/h5ls.c @@ -845,10 +845,10 @@ display_enum_type(hid_t type, int ind) } } else if (H5T_SGN_NONE==H5Tget_sign(native)) { printf("%"PRINTF_LL_WIDTH"u", - *((unsigned long_long*)(value+i*dst_size))); + *((unsigned long_long*)((void*)(value+i*dst_size)))); } else { printf("%"PRINTF_LL_WIDTH"d", - *((long_long*)(value+i*dst_size))); + *((long_long*)((void*)(value+i*dst_size)))); } } |