summaryrefslogtreecommitdiffstats
path: root/test/cache_common.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2017-02-23 07:21:41 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2017-02-23 07:21:41 (GMT)
commit4b5e05c084f93c35dae946c2c9e814d565a613b0 (patch)
tree634c5cb617eb9a63dc7f5cf8487f30fef81321f1 /test/cache_common.c
parent2c2fb928daa8fa82930f78d00f9ee0dcad70d35a (diff)
downloadhdf5-4b5e05c084f93c35dae946c2c9e814d565a613b0.zip
hdf5-4b5e05c084f93c35dae946c2c9e814d565a613b0.tar.gz
hdf5-4b5e05c084f93c35dae946c2c9e814d565a613b0.tar.bz2
Fix some more signed -> unsigned value issues with cache data structures, also
misc. style cleanups. All to align w/incoming page_buffering changes.
Diffstat (limited to 'test/cache_common.c')
-rw-r--r--test/cache_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cache_common.c b/test/cache_common.c
index bb526c1..81e62ae 100644
--- a/test/cache_common.c
+++ b/test/cache_common.c
@@ -6438,7 +6438,7 @@ dump_LRU(H5F_t * file_ptr)
entry_ptr = cache_ptr->LRU_head_ptr;
HDfprintf(stdout,
- "\n\nIndex len/size/clean size/dirty size = %d/%lld/%lld/%lld\n",
+ "\n\nIndex len/size/clean size/dirty size = %u/%lld/%lld/%lld\n",
cache_ptr->index_len, (long long)(cache_ptr->index_size),
(long long)(cache_ptr->clean_index_size),
(long long)(cache_ptr->dirty_index_size));