summaryrefslogtreecommitdiffstats
path: root/test/external_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/external_common.c')
-rw-r--r--test/external_common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/external_common.c b/test/external_common.c
index 7d72605..25bf43e 100644
--- a/test/external_common.c
+++ b/test/external_common.c
@@ -46,7 +46,7 @@ reset_raw_data_files(hbool_t is_env)
/* Set up garbage buffer */
garbage_count = N_EXT_FILES * GARBAGE_PER_FILE;
- if (NULL == (garbage = (uint8_t *)HDcalloc(garbage_count, sizeof(uint8_t))))
+ if (NULL == (garbage = (uint8_t *)calloc(garbage_count, sizeof(uint8_t))))
goto error;
for (i = 0; i < garbage_count; i++)
garbage[i] = 0xFF;
@@ -113,13 +113,13 @@ reset_raw_data_files(hbool_t is_env)
HDclose(fd);
} /* end for */
- HDfree(garbage);
+ free(garbage);
return SUCCEED;
error:
if (fd)
HDclose(fd);
if (garbage)
- HDfree(garbage);
+ free(garbage);
return FAIL;
}