2
0
mirror of https://github.com/HDFGroup/hdf5.git synced 2025-04-12 17:31:09 +08:00

This test cannot use HD prefix macro with printf of fprintf

This commit is contained in:
Allen Byrne 2019-08-17 13:33:41 -05:00
parent 228ef0684e
commit 2bce24576e

@ -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++;
}