summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-07-02 12:32:20 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-07-02 12:32:20 (GMT)
commit80aee07340706e9bc8973694b5e533c1b7bd5a8b (patch)
tree5456ad482274c7d5261a824b0a7fe5632714c936
parent0fbecb8599b29995171a260fd5fa1c50cd0ceffb (diff)
downloadhdf5-80aee07340706e9bc8973694b5e533c1b7bd5a8b.zip
hdf5-80aee07340706e9bc8973694b5e533c1b7bd5a8b.tar.gz
hdf5-80aee07340706e9bc8973694b5e533c1b7bd5a8b.tar.bz2
[svn-r5753] Purpose:
Code cleanup Description: Update format for printf Platforms tested: IRIX64 6.5 (modi4) w/parallel
-rw-r--r--src/H5Smpio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Smpio.c b/src/H5Smpio.c
index 0c20ece..9eafea0 100644
--- a/src/H5Smpio.c
+++ b/src/H5Smpio.c
@@ -341,7 +341,7 @@ H5S_mpio_hyper_type( const H5S_t *space, size_t elmt_size, hbool_t UNUSED prefer
* Construct contig type for inner contig dims:
*******************************************************/
#ifdef H5Smpi_DEBUG
- fprintf(stdout, "hyper_type: Making contig type %d MPI_BYTEs\n", elmt_size );
+ fprintf(stdout, "hyper_type: Making contig type %u MPI_BYTEs\n", (unsigned)elmt_size );
for (i=new_rank-1; i>=0; --i) {
HDfprintf(stdout, "d[%d].xtent=%Hu \n", i, d[i].xtent);
}