diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-03-30 18:22:43 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-03-30 19:40:44 (GMT) |
commit | cb222dded242724909bbb235518c6d819c06b7c7 (patch) | |
tree | f2f96c3f193711350857f6bc5716a966d4785c4c /test | |
parent | c25651fc5ce850715781a967396328a0b4cef43c (diff) | |
download | hdf5-cb222dded242724909bbb235518c6d819c06b7c7.zip hdf5-cb222dded242724909bbb235518c6d819c06b7c7.tar.gz hdf5-cb222dded242724909bbb235518c6d819c06b7c7.tar.bz2 |
HDFFV-10143 change put to replace and add const
Diffstat (limited to 'test')
-rw-r--r-- | test/plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/plugin.c b/test/plugin.c index c739b72..359bbdd 100644 --- a/test/plugin.c +++ b/test/plugin.c @@ -876,7 +876,7 @@ test_filter_path_apis(void) TESTING(" replace"); /* Replace one path*/ HDsprintf(pathname, "a_path_%d", 20); - if (H5PLput(pathname, 1) < 0) { + if (H5PLreplace(pathname, 1) < 0) { HDfprintf(stderr," replace 1: %s\n", pathname); TEST_ERROR } |