From 399ab6446da598de682a2837d3052ee784fde377 Mon Sep 17 00:00:00 2001 From: Hyo-Kyung Lee Date: Tue, 17 Oct 2023 10:59:02 -0500 Subject: [PATCH] fix: close #100 --- test/cmpd_dset.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cmpd_dset.c b/test/cmpd_dset.c index 02dbde3759a..6a1e6b675ee 100644 --- a/test/cmpd_dset.c +++ b/test/cmpd_dset.c @@ -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=%ld, b=%ld, c=%ld\n", s1_ptr->a, s2_ptr->b, s2_ptr->c); - printf(" rbuf: a=%ld, b=%ld, c=%ld", rbuf_ptr->a, rbuf_ptr->b, rbuf_ptr->c); + 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); goto error; } } /* end for */