summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2016-01-13 15:25:37 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2016-01-13 15:25:37 (GMT)
commita7724facc70ef6b8297f8a1fe6cf486305967d0e (patch)
tree05bd3bfd50ab506e77a272863933ce23a3143740 /test
parent4f5a47da500427803c71d953143e0d9565fb56a0 (diff)
downloadhdf5-a7724facc70ef6b8297f8a1fe6cf486305967d0e.zip
hdf5-a7724facc70ef6b8297f8a1fe6cf486305967d0e.tar.gz
hdf5-a7724facc70ef6b8297f8a1fe6cf486305967d0e.tar.bz2
[svn-r28875] Merge of r28861 from trunk (minor string format change). Fixes HDFFV-9640.
Tested on: 64-bit Ubuntu 15.10 (Linux 4.2.0 x86_64) gcc 5.2.1 parallel only (MPICH 3.1.4)
Diffstat (limited to 'test')
-rw-r--r--test/error_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/error_test.c b/test/error_test.c
index e712d86..64f301d 100644
--- a/test/error_test.c
+++ b/test/error_test.c
@@ -498,7 +498,7 @@ test_create(void)
if(err_num != 0) TEST_ERROR
/* Push an error with a long description */
- if(H5Epush(estack_id, __FILE__, err_func, __LINE__, ERR_CLS, ERR_MAJ_TEST, ERR_MIN_SUBROUTINE, err_msg) < 0) TEST_ERROR;
+ if(H5Epush(estack_id, __FILE__, err_func, __LINE__, ERR_CLS, ERR_MAJ_TEST, ERR_MIN_SUBROUTINE, "%s", err_msg) < 0) TEST_ERROR;
/* Check the number of errors on stack */
err_num = H5Eget_num(estack_id);
@@ -543,7 +543,7 @@ test_copy(void)
herr_t ret; /* Generic return value */
/* Push an error with a long description */
- if(H5Epush(H5E_DEFAULT, __FILE__, err_func, __LINE__, ERR_CLS, ERR_MAJ_TEST, ERR_MIN_SUBROUTINE, err_msg) < 0) TEST_ERROR;
+ if(H5Epush(H5E_DEFAULT, __FILE__, err_func, __LINE__, ERR_CLS, ERR_MAJ_TEST, ERR_MIN_SUBROUTINE, "%s", err_msg) < 0) TEST_ERROR;
/* Check the number of errors on stack */
err_num = H5Eget_num(H5E_DEFAULT);