diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-02-12 17:04:40 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-02-12 17:04:40 (GMT) |
commit | 1074ccf4d935792506aa5acd8628f57be65d2091 (patch) | |
tree | ee5985e74f56af453d4fa66c33777f83f09566ea /tools/lib | |
parent | bf1419ffe4a3a94c6c0750d48692fd9d9d1e3d8d (diff) | |
download | hdf5-1074ccf4d935792506aa5acd8628f57be65d2091.zip hdf5-1074ccf4d935792506aa5acd8628f57be65d2091.tar.gz hdf5-1074ccf4d935792506aa5acd8628f57be65d2091.tar.bz2 |
[svn-r6398] Purpose:
Code cleanup
Description:
Clean up some compiler warnings
Platforms tested:
FreeBSD 4.7 (sleipnir)
Diffstat (limited to 'tools/lib')
-rw-r--r-- | tools/lib/h5tools.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5tools.c b/tools/lib/h5tools.c index fbdb38a..23d2adf 100644 --- a/tools/lib/h5tools.c +++ b/tools/lib/h5tools.c @@ -518,7 +518,7 @@ h5tools_dump_simple_data(FILE *stream, const h5dump_t *info, hid_t container, if (ctx->size_last_dim && (ctx->cur_elmt % ctx->size_last_dim) == 0) ctx->need_prefix = TRUE; - if (elmt_counter == ctx->size_last_dim) { + if ((hsize_t)elmt_counter == ctx->size_last_dim) { ctx->need_prefix = TRUE; elmt_counter = 0; } |