diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-08-17 18:33:41 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-08-17 18:33:41 (GMT) |
commit | 2bce24576ed39aa351f82efca9eb6d9ce8f18300 (patch) | |
tree | b3517e39edefcb68faadec57912bc540620c316e /hl | |
parent | 228ef0684ea9119b5accc105006d250a1aac6d07 (diff) | |
download | hdf5-2bce24576ed39aa351f82efca9eb6d9ce8f18300.zip hdf5-2bce24576ed39aa351f82efca9eb6d9ce8f18300.tar.gz hdf5-2bce24576ed39aa351f82efca9eb6d9ce8f18300.tar.bz2 |
This test cannot use HD prefix macro with printf of fprintf
Diffstat (limited to 'hl')
-rw-r--r-- | hl/c++/test/ptableTest.cpp | 4 |
1 files 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++; } |