summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-08-09 21:55:44 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-08-09 21:55:44 (GMT)
commitaae989869c1f12228a7baf21890f18908b4fba21 (patch)
tree9fcef9605e840e736eeb6b2679dd0d889a480ecd /src
parent8f7425d2a2fb9ffb7b7b01822a7f9909ce3a4a14 (diff)
downloadhdf5-aae989869c1f12228a7baf21890f18908b4fba21.zip
hdf5-aae989869c1f12228a7baf21890f18908b4fba21.tar.gz
hdf5-aae989869c1f12228a7baf21890f18908b4fba21.tar.bz2
[svn-r5868] Purpose:
Code cleanup Description: Cleanup up a few compiler warnings... Platforms tested: IRIX64 6.5 (modi4) w/parallel
Diffstat (limited to 'src')
-rw-r--r--src/H5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5.c b/src/H5.c
index 5794911..02d10d7 100644
--- a/src/H5.c
+++ b/src/H5.c
@@ -1394,7 +1394,7 @@ H5_trace (double *returning, const char *func, const char *type, ...)
if (H5_debug_g.ttimes) {
char tmp[128];
sprintf(tmp, "%.6f", event_time.etime-first_time.etime);
- fprintf(out, " %*s ", strlen(tmp), "");
+ fprintf(out, " %*s ", (int)strlen(tmp), "");
}
for (i=0; i<current_depth; i++)
fputc('+', out);