From 06530aff19094ee2f45b4dc2d4e1610f37a4c275 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Fri, 22 Sep 2006 22:44:08 +0000 Subject: [PATCH] src/H5Part.c - H5PartSetStep() * fix conversion to different size in debug output --- src/H5Part.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/H5Part.c b/src/H5Part.c index e8108e0..6ccea8f 100644 --- a/src/H5Part.c +++ b/src/H5Part.c @@ -1246,8 +1246,8 @@ H5PartSetStep ( CHECK_FILEHANDLE ( f ); - _H5Part_print_info ( "Proc[%d]: Set step to #%lld for file %d", - f->myproc, (long long)step, (int) f ); + _H5Part_print_info ( "Proc[%d]: Set step to #%lld for file %lld", + f->myproc, (long long)step, (long long) f ); sprintf ( name, "%s#%lld", H5PART_PARTICLES_GROUP, (long long) step ); r = H5Gget_objinfo( f->file, name, 1, NULL ); if ( ( (f->mode == H5PART_APPEND) || (f->mode == H5PART_WRITE) )