summaryrefslogtreecommitdiffstats
path: root/testpar/t_prestart.c
diff options
context:
space:
mode:
Diffstat (limited to 'testpar/t_prestart.c')
-rw-r--r--testpar/t_prestart.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testpar/t_prestart.c b/testpar/t_prestart.c
index dc291af..c80a78d 100644
--- a/testpar/t_prestart.c
+++ b/testpar/t_prestart.c
@@ -103,9 +103,9 @@ main(int argc, char **argv)
for (i = 0; i < block[0]; i++) {
for (j = 0; j < block[1]; j++) {
if (*dataptr != mpi_rank + 1) {
- HDprintf("Dataset Verify failed at [%lu][%lu](row %lu, col %lu): expect %d, got %d\n",
- (unsigned long)i, (unsigned long)j, (unsigned long)((hsize_t)i + start[0]),
- (unsigned long)((hsize_t)j + start[1]), mpi_rank + 1, *(dataptr));
+ printf("Dataset Verify failed at [%lu][%lu](row %lu, col %lu): expect %d, got %d\n",
+ (unsigned long)i, (unsigned long)j, (unsigned long)((hsize_t)i + start[0]),
+ (unsigned long)((hsize_t)j + start[1]), mpi_rank + 1, *(dataptr));
nerrors++;
}
dataptr++;