summaryrefslogtreecommitdiffstats
path: root/src/H5AC.c
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1998-01-29 16:31:24 (GMT)
committerRobb Matzke <matzke@llnl.gov>1998-01-29 16:31:24 (GMT)
commit5761b90f63b5f3d69e914cfbe7a4619cce9bfc4b (patch)
tree2bc94a947962c448f2d70f8489e054c478d69819 /src/H5AC.c
parentcf52ce8fc45d7010e6fc21dbdee5d5b2e33dc2ce (diff)
downloadhdf5-5761b90f63b5f3d69e914cfbe7a4619cce9bfc4b.zip
hdf5-5761b90f63b5f3d69e914cfbe7a4619cce9bfc4b.tar.gz
hdf5-5761b90f63b5f3d69e914cfbe7a4619cce9bfc4b.tar.bz2
[svn-r196] Changes since 19980128
---------------------- ./MANIFEST Added new files. ./bin/Makefile.dist [NEW] This file becomes the default top-level Makefile which invokes configure with no arguments and then re-runs make. It's for those people that don't read the INSTALL file. ./bin/release [NEW] Build HDF release tarballs. Arguments are a list of tarball types and are: tar, compress, gzip, or bzip2. The default is gzip. If the only argument is `all' then all types of tarballs are created. The results are put in the `releases' directory. Make sure you keep MANIFEST up to date. This program requires perl-5.003 or better. ./src/H5AC.c Fixed a printf format.
Diffstat (limited to 'src/H5AC.c')
-rw-r--r--src/H5AC.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5AC.c b/src/H5AC.c
index b2c60c2..c96eb94 100644
--- a/src/H5AC.c
+++ b/src/H5AC.c
@@ -873,12 +873,13 @@ H5AC_debug(H5F_t *f)
} else {
sprintf(ascii, "%7.2f%%", miss_rate);
}
- fprintf(stderr, " %18s: %8d %8d %7s %8d%+-9d\n", s,
+ fprintf(stderr, " %18s: %8u %8u %7s %8u%+-9ld\n", s,
cache->diagnostics[i].nhits,
cache->diagnostics[i].nmisses,
ascii,
cache->diagnostics[i].ninits,
- cache->diagnostics[i].nflushes - cache->diagnostics[i].ninits);
+ ((long)(cache->diagnostics[i].nflushes) -
+ (long)(cache->diagnostics[i].ninits)));
}
FUNC_LEAVE(SUCCEED);