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:15:56 (GMT) |
commit | c2941faa6673022218b365ead5be24b02c47ab6a (patch) | |
tree | a1499deb752025b3efb1c79749f665cdc2e57eb6 /test | |
parent | 9b17c2e12412492cc34f302be2cf9293109d6726 (diff) | |
download | hdf5-c2941faa6673022218b365ead5be24b02c47ab6a.zip hdf5-c2941faa6673022218b365ead5be24b02c47ab6a.tar.gz hdf5-c2941faa6673022218b365ead5be24b02c47ab6a.tar.bz2 |
Fix typo deletion
Diffstat (limited to 'test')
-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 6d4a0e1..041f702 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 |