summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2017-04-04 15:15:56 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2017-04-04 15:16:30 (GMT)
commitdb9eeb9f6ae954c0375349dc411a7ad6ddcf16cc (patch)
treeedbc51f9373997474da7c0c50da20ebf604d7dad
parentf17ce1b06e6d023575c0ef7c0c1c65dbf1968d6a (diff)
downloadhdf5-db9eeb9f6ae954c0375349dc411a7ad6ddcf16cc.zip
hdf5-db9eeb9f6ae954c0375349dc411a7ad6ddcf16cc.tar.gz
hdf5-db9eeb9f6ae954c0375349dc411a7ad6ddcf16cc.tar.bz2
Fix typo deletion
-rw-r--r--test/plugin.c4
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