summaryrefslogtreecommitdiffstats
path: root/test/objcopy_ref.c
diff options
context:
space:
mode:
authorSean McBride <sean@rogue-research.com>2023-06-16 04:49:02 (GMT)
committerGitHub <noreply@github.com>2023-06-16 04:49:02 (GMT)
commit68eba3da69e659fab69bbef5901ce42e82cea1dc (patch)
treef36805f798df6c04092c14dc6803d2cb82f6eff2 /test/objcopy_ref.c
parent10093f7c4345061bdbebc12888debbf08fe85a5b (diff)
downloadhdf5-68eba3da69e659fab69bbef5901ce42e82cea1dc.zip
hdf5-68eba3da69e659fab69bbef5901ce42e82cea1dc.tar.gz
hdf5-68eba3da69e659fab69bbef5901ce42e82cea1dc.tar.bz2
Many clang -Wextra-semi-stmt fixes (#2537)
* Adds semicolons to function-like macros * Adds a do..while(0) loop to some macros * Removes semicolons when inappropriate, especially H5E_TRY_BEGIN/END
Diffstat (limited to 'test/objcopy_ref.c')
-rw-r--r--test/objcopy_ref.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/objcopy_ref.c b/test/objcopy_ref.c
index ebce96b..3ad5091 100644
--- a/test/objcopy_ref.c
+++ b/test/objcopy_ref.c
@@ -241,7 +241,7 @@ error:
H5Rdestroy(&ref[0]);
H5Rdestroy(&ref[1]);
}
- H5E_END_TRY;
+ H5E_END_TRY
return (-1);
}
@@ -341,7 +341,7 @@ error:
H5Rdestroy(&ref[0]);
H5Rdestroy(&ref[1]);
}
- H5E_END_TRY;
+ H5E_END_TRY
return (-1);
}
@@ -472,7 +472,7 @@ error:
H5Rdestroy(&ref[0]);
H5Rdestroy(&ref[1]);
}
- H5E_END_TRY;
+ H5E_END_TRY
return (-1);
}
@@ -703,7 +703,7 @@ error:
H5Tclose(tid2);
H5Tclose(tid);
}
- H5E_END_TRY;
+ H5E_END_TRY
return FALSE;
} /* end compare_attribute() */
@@ -790,7 +790,7 @@ error:
H5Aclose(aid2);
H5Aclose(aid);
}
- H5E_END_TRY;
+ H5E_END_TRY
return FALSE;
} /* end compare_std_attributes() */
@@ -1245,7 +1245,7 @@ error:
H5Tclose(tid2);
H5Tclose(tid);
}
- H5E_END_TRY;
+ H5E_END_TRY
return FALSE;
} /* end compare_datasets() */
@@ -1448,7 +1448,7 @@ error:
H5E_BEGIN_TRY
{
}
- H5E_END_TRY;
+ H5E_END_TRY
return FALSE;
} /* end compare_groups() */
@@ -1831,7 +1831,7 @@ error:
H5Fclose(fid_src);
H5Fclose(fid_ext);
}
- H5E_END_TRY;
+ H5E_END_TRY
return 1;
} /* end test_copy_option */