diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-08-09 21:55:44 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-08-09 21:55:44 (GMT) |
commit | aae989869c1f12228a7baf21890f18908b4fba21 (patch) | |
tree | 9fcef9605e840e736eeb6b2679dd0d889a480ecd /src/H5.c | |
parent | 8f7425d2a2fb9ffb7b7b01822a7f9909ce3a4a14 (diff) | |
download | hdf5-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/H5.c')
-rw-r--r-- | src/H5.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |