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:16:30 (GMT) |
commit | db9eeb9f6ae954c0375349dc411a7ad6ddcf16cc (patch) | |
tree | edbc51f9373997474da7c0c50da20ebf604d7dad | |
parent | f17ce1b06e6d023575c0ef7c0c1c65dbf1968d6a (diff) | |
download | hdf5-db9eeb9f6ae954c0375349dc411a7ad6ddcf16cc.zip hdf5-db9eeb9f6ae954c0375349dc411a7ad6ddcf16cc.tar.gz hdf5-db9eeb9f6ae954c0375349dc411a7ad6ddcf16cc.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 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 |