summaryrefslogtreecommitdiffstats
path: root/src/H5Fmpio.c
diff options
context:
space:
mode:
authorRobert Kim Yates <rkyates@llnl.gov>1998-11-30 18:42:49 (GMT)
committerRobert Kim Yates <rkyates@llnl.gov>1998-11-30 18:42:49 (GMT)
commita1a8feae07c988bd21711185a48051dc86a94ae0 (patch)
tree9867fadee528dc515bcae01e51a5487c5c45503b /src/H5Fmpio.c
parent6900f5f95855fdf04e970dca06e07ad1c081d709 (diff)
downloadhdf5-a1a8feae07c988bd21711185a48051dc86a94ae0.zip
hdf5-a1a8feae07c988bd21711185a48051dc86a94ae0.tar.gz
hdf5-a1a8feae07c988bd21711185a48051dc86a94ae0.tar.bz2
[svn-r955] Made debug print statements portable.
Diffstat (limited to 'src/H5Fmpio.c')
-rw-r--r--src/H5Fmpio.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5Fmpio.c b/src/H5Fmpio.c
index 27d0871..b12072b 100644
--- a/src/H5Fmpio.c
+++ b/src/H5Fmpio.c
@@ -520,8 +520,8 @@ H5F_mpio_read(H5F_low_t *lf, H5F_access_t *access_parms,
#ifdef H5Fmpio_DEBUG
if (H5F_mpio_Debug[(int)'r'])
- fprintf(stdout, "in H5F_mpio_read mpi_off=%lld size_i=%d\n",
- mpi_off, size_i );
+ HDfprintf(stdout, "in H5F_mpio_read mpi_off=%Hd size_i=%d\n",
+ (hssize_t)mpi_off, size_i );
#endif
/* Set up for a fancy xfer using complex types, or single byte block.
@@ -772,8 +772,8 @@ H5F_mpio_write(H5F_low_t *lf, H5F_access_t *access_parms,
#ifdef H5Fmpio_DEBUG
if (H5F_mpio_Debug[(int)'w'])
- fprintf(stdout, "in H5F_mpio_write mpi_off=%lld size_i=%d\n",
- mpi_off, size_i );
+ HDfprintf(stdout, "in H5F_mpio_write mpi_off=%Hd size_i=%d\n",
+ (hssize_t)mpi_off, size_i );
#endif
/* Only p0 will do the actual write if all procs in comm write same data */