From 2bce24576ed39aa351f82efca9eb6d9ce8f18300 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Sat, 17 Aug 2019 13:33:41 -0500 Subject: This test cannot use HD prefix macro with printf of fprintf --- hl/c++/test/ptableTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hl/c++/test/ptableTest.cpp b/hl/c++/test/ptableTest.cpp index d0b2c39..e873503 100644 --- a/hl/c++/test/ptableTest.cpp +++ b/hl/c++/test/ptableTest.cpp @@ -31,7 +31,7 @@ int main(void) fileID = H5Fcreate(TEST_FILE, H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT); if(fileID <0) { - HDfprintf(stderr, "Couldn't create file.\n"); + fprintf(stderr, "Couldn't create file.\n"); num_errors = 1; } else { @@ -57,7 +57,7 @@ int main(void) err = H5Fclose(fileID); if( err < 0 ) { - HDfprintf(stderr, "Failed to close file.\n"); + fprintf(stderr, "Failed to close file.\n"); num_errors++; } -- cgit v0.12