Skip to content

Commit

Permalink
Address @derobins review. Add \n at the end.
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoklee committed Oct 17, 2023
1 parent f7f48dd commit 88982f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/cmpd_dset.c
Original file line number Diff line number Diff line change
Expand Up @@ -401,8 +401,8 @@ compare_a_b_c_data(void *exp1_buf, void *exp2_buf, void *rbuf)
if (s1_ptr->a != rbuf_ptr->a || s2_ptr->b != rbuf_ptr->b || s2_ptr->c != rbuf_ptr->c) {
H5_FAILED();
printf(" i=%d\n", i);
printf(" expect_buf:a=%lld, b=%lld, c=%lld\n", s1_ptr->a, s2_ptr->b, s2_ptr->c);
printf(" rbuf: a=%lld, b=%lld, c=%lld", rbuf_ptr->a, rbuf_ptr->b, rbuf_ptr->c);
printf(" expect_buf:a=%" PRId64 ", b=%" PRId64 ", c=%" PRId64"\n", s1_ptr->a, s2_ptr->b, s2_ptr->c);
printf(" rbuf: a=%" PRId64 ", b=%" PRId64 ", c=%" PRId64"\n" , rbuf_ptr->a, rbuf_ptr->b, rbuf_ptr->c);
goto error;
}
} /* end for */
Expand Down

0 comments on commit 88982f0

Please sign in to comment.