From 853837477e76482adaed556b8497a7cac7f02a8c Mon Sep 17 00:00:00 2001 From: Kurt Stockinger Date: Thu, 7 Jun 2007 00:35:31 +0000 Subject: [PATCH] Fixed wrong include file and variable types. --- test/H5PartTestParallel.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/H5PartTestParallel.cc b/test/H5PartTestParallel.cc index 056ecf9..eb728ac 100755 --- a/test/H5PartTestParallel.cc +++ b/test/H5PartTestParallel.cc @@ -2,7 +2,7 @@ #include #include #include -#include "H5Part.hh" +#include "H5Part.h" #ifdef PARALLEL_IO @@ -84,8 +84,8 @@ int main(int argc,char *argv[]){ /* now lets compute the appropriate idStart and idEnd for this particular processor */ - unsigned h5part_int64_t idStart = sz*myproc; - unsigned h5part_int64_t idEnd = (sz-1)+sz*myproc; + h5part_int64_t idStart = sz*myproc; + h5part_int64_t idEnd = (sz-1)+sz*myproc; H5PartSetView(file,idStart,idEnd); np=H5PartGetNumParticles(file); printf("Proc[%u]: View=%u:%u : particles= %u\n",