summaryrefslogtreecommitdiffstats
path: root/tools/lib
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2005-03-21 22:39:58 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2005-03-21 22:39:58 (GMT)
commit9a80e52533e2038c392c671d72d907d5919a6d9a (patch)
treec8ec793c2f1a728b07330196a6c968f99c057ce3 /tools/lib
parent4f0e372f0c7c8f2bff22494e155f0f56ad02032c (diff)
downloadhdf5-9a80e52533e2038c392c671d72d907d5919a6d9a.zip
hdf5-9a80e52533e2038c392c671d72d907d5919a6d9a.tar.gz
hdf5-9a80e52533e2038c392c671d72d907d5919a6d9a.tar.bz2
[svn-r10250] Purpose:
Replaced tmpfile() call with system macro HDtmpfile so that it is easier to customize for systems. Platforms tested: in heping. Misc. update:
Diffstat (limited to 'tools/lib')
-rw-r--r--tools/lib/h5diff_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5diff_util.c b/tools/lib/h5diff_util.c
index c85ab77..3f96434 100644
--- a/tools/lib/h5diff_util.c
+++ b/tools/lib/h5diff_util.c
@@ -62,7 +62,7 @@ void parallel_print(const char* format, ...)
/* Delete the characters that were written to outBuff since they will be written to the overflow_file */
memset(outBuff+outBuffOffset, 0, OUTBUFF_SIZE - outBuffOffset);
- overflow_file = tmpfile();
+ overflow_file = HDtmpfile();
if(overflow_file == NULL)
printf("Warning: Could not create overflow file. Output may be truncated.\n");
else