Fix compilation issue when H5_TOOLS_DEBUG is defined (#6256)

This commit is contained in:
jhendersonHDF
2026-03-10 06:58:33 -05:00
committed by GitHub
parent 1e297354fd
commit 3e336bf150
+4 -4
View File
@@ -2562,7 +2562,7 @@ diff_float_complex_element(unsigned char *mem1, unsigned char *mem2, hsize_t ele
nfound += diff_float_complex(temp1_real, temp1_imag, temp2_real, temp2_imag, elem_idx, opts);
H5TOOLS_ENDDEBUG(": %" PRIuHSIZE " zero:%d - errstat:%d", nfound, both_zero, opts->err_stat);
H5TOOLS_ENDDEBUG(": %" PRIuHSIZE " - errstat:%d", nfound, opts->err_stat);
return nfound;
}
@@ -2596,7 +2596,7 @@ diff_double_complex_element(unsigned char *mem1, unsigned char *mem2, hsize_t el
nfound += diff_double_complex(temp1_real, temp1_imag, temp2_real, temp2_imag, elem_idx, opts);
H5TOOLS_ENDDEBUG(": %" PRIuHSIZE " zero:%d - errstat:%d", nfound, both_zero, opts->err_stat);
H5TOOLS_ENDDEBUG(": %" PRIuHSIZE " - errstat:%d", nfound, opts->err_stat);
return nfound;
}
@@ -2630,7 +2630,7 @@ diff_ldouble_complex_element(unsigned char *mem1, unsigned char *mem2, hsize_t e
nfound += diff_ldouble_complex(temp1_real, temp1_imag, temp2_real, temp2_imag, elem_idx, opts);
H5TOOLS_ENDDEBUG(": %" PRIuHSIZE " zero:%d - errstat:%d", nfound, both_zero, opts->err_stat);
H5TOOLS_ENDDEBUG(": %" PRIuHSIZE " - errstat:%d", nfound, opts->err_stat);
return nfound;
}
#endif
@@ -3393,7 +3393,7 @@ diff_complex_element(unsigned char *mem1, unsigned char *mem2, hsize_t elem_idx,
nfound += diff_ldouble_complex(temp1_real, temp1_imag, temp2_real, temp2_imag, elem_idx, opts);
}
H5TOOLS_ENDDEBUG(": %" PRIuHSIZE " zero:%d - errstat:%d", nfound, both_zero, opts->err_stat);
H5TOOLS_ENDDEBUG(": %" PRIuHSIZE " - errstat:%d", nfound, opts->err_stat);
return nfound;
}