summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2015-12-09 21:24:28 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2015-12-09 21:24:28 (GMT)
commit73292c21c7b138109a7109e422bbfe858d15a5e8 (patch)
tree8f22c7b48fa3b6bee827afb9347144c486d8d634 /test
parenta43c8deca09a93cbde1f31fd0d1c7544118bcb88 (diff)
downloadhdf5-73292c21c7b138109a7109e422bbfe858d15a5e8.zip
hdf5-73292c21c7b138109a7109e422bbfe858d15a5e8.tar.gz
hdf5-73292c21c7b138109a7109e422bbfe858d15a5e8.tar.bz2
[svn-r28548] Added missing HD in front of snprintf() in cache_logging test.
Tested on: 64-bit Windows 10 Pro w/ VS 2015 Pro & CMake 3.3.1
Diffstat (limited to 'test')
-rw-r--r--test/cache_logging.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cache_logging.c b/test/cache_logging.c
index ec9b7b9..8b1afdb 100644
--- a/test/cache_logging.c
+++ b/test/cache_logging.c
@@ -114,7 +114,7 @@ test_logging_api(void)
/* Perform some manipulations */
for(i = 0; i < N_GROUPS; i++) {
HDmemset(group_name, 0, 8);
- snprintf(group_name, 8, "%d", i);
+ HDsnprintf(group_name, 8, "%d", i);
if((gid = H5Gcreate2(fid, group_name, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0)
TEST_ERROR;
if(H5Gclose(gid) < 0)