summaryrefslogtreecommitdiffstats
path: root/test/API/H5_api_file_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/API/H5_api_file_test.c')
-rw-r--r--test/API/H5_api_file_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/API/H5_api_file_test.c b/test/API/H5_api_file_test.c
index 804b3bd..5b91551 100644
--- a/test/API/H5_api_file_test.c
+++ b/test/API/H5_api_file_test.c
@@ -948,7 +948,7 @@ test_flush_file(void)
}
for (u = 0; u < 10; u++) {
- sprintf(dset_name, "Dataset %u", u);
+ snprintf(dset_name, sizeof(dset_name), "Dataset %u", u);
if ((dset_id = H5Dcreate2(file_id, dset_name, H5T_STD_U32LE, dspace_id, H5P_DEFAULT, H5P_DEFAULT,
H5P_DEFAULT)) < 0) {