diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-04-04 15:15:56 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-04-04 15:17:12 (GMT) |
commit | 790f8fcf039c7407f2b24a413de5911bdc3d4f48 (patch) | |
tree | e8b07a8a4af039d29f0bf485ebce4efc5d78ab98 | |
parent | a957bb0f05d2e4f7986265982fabc64082f842df (diff) | |
download | hdf5-790f8fcf039c7407f2b24a413de5911bdc3d4f48.zip hdf5-790f8fcf039c7407f2b24a413de5911bdc3d4f48.tar.gz hdf5-790f8fcf039c7407f2b24a413de5911bdc3d4f48.tar.bz2 |
Fix typo deletion
-rw-r--r-- | test/plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/plugin.c b/test/plugin.c index b35b367..4d0db27 100644 --- a/test/plugin.c +++ b/test/plugin.c @@ -897,10 +897,10 @@ test_filter_path_apis(void) TESTING(" remove (verify for insert)"); /* Remove one path*/ - if H5PLremove(4) < 0) TEST_ERROR + if(H5PLremove(4) < 0) TEST_ERROR /* Verify that the entries were moved */ - if H5PLget(4, pathname, 256) <= 0) TEST_ERROR + if(H5PLget(4, pathname, 256) <= 0) TEST_ERROR if(HDstrcmp(pathname, "a_path_4") != 0) { HDfprintf(stderr," get 4: %s\n", pathname); TEST_ERROR |