summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/error_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/error_test.c b/test/error_test.c
index 5a7741f..b150656 100644
--- a/test/error_test.c
+++ b/test/error_test.c
@@ -284,7 +284,7 @@ error_stack(void)
/* Make it push error, force this function to fail */
if((err_num = H5Eget_num(ERR_STACK)) == 0) {
H5Epush(ERR_STACK, __FILE__, FUNC_error_stack, __LINE__, ERR_CLS, ERR_MAJ_API, ERR_MIN_GETNUM,
- "Get number test failed, returned %zd", err_num);
+ "Get number test failed, returned %d", (int)err_num);
goto error;
} /* end if */