From dddeaeba275243da2fb117db6eaa2d6f8abcfc5a Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Thu, 14 Sep 2006 18:23:11 +0000 Subject: [PATCH] - src/H5Part.c - H5PartOpenFileParallel() * in the parallel code there were some not yet renamed calls to "print_debug()" - H5PartSetStep() * in the parallel code there was a not yet renamed call to "print_info()" --- src/H5Part.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/H5Part.c b/src/H5Part.c index 37a338c..a731f72 100644 --- a/src/H5Part.c +++ b/src/H5Part.c @@ -180,11 +180,12 @@ H5PartOpenFileParallel ( goto error_cleanup; } #ifdef PARALLEL_IO - print_info ( "H5PartOpenFileParallel: " - "Proc[%d]: Opened file \"%s\" val=%d", - f->myproc, - filename, - f->file ); + _H5Part_print_info ( + "H5PartOpenFileParallel: " + "Proc[%d]: Opened file \"%s\" val=%d", + f->myproc, + filename, + f->file ); #endif f->mode = flags; f->timegroup = 0; @@ -485,9 +486,10 @@ H5PartSetNumParticles ( return HANDLE_MPI_ALLGATHER_ERR; } if ( f->myproc == 0 ) { - print_debug ( "%s: Particle offsets:", %s ); + _H5Part_print_debug ( "%s: Particle offsets:", __funcname ); for(i=0;inprocs;i++) - print_debug ( "\tnp=%d",(int) f->pnparticles[i] ); + _H5Part_print_debug ( "\tnp=%lld", + (long long) f->pnparticles[i] ); } /* should I create a selection here? */