[svn-r21980] Correct HD prefix in tools for *alloc

Checked for HD support.
This commit is contained in:
Allen Byrne
2012-02-24 09:39:17 -05:00
parent 944f2cdf8d
commit 5b1c9ffe2d
9 changed files with 33 additions and 33 deletions

View File

@@ -5580,7 +5580,7 @@ int ull2float(unsigned long long ull_value, float *f_value)
src_size = H5Tget_size(H5T_NATIVE_ULLONG);
dst_size = H5Tget_size(H5T_NATIVE_FLOAT);
buf = (unsigned char*)calloc(1, MAX(src_size, dst_size));
buf = (unsigned char*)HDcalloc(1, MAX(src_size, dst_size));
HDmemcpy(buf, &ull_value, src_size);