summaryrefslogtreecommitdiffstats
path: root/test/vfd_swmr_bigset_writer.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2022-03-06 23:33:00 (GMT)
committerGitHub <noreply@github.com>2022-03-06 23:33:00 (GMT)
commit78375882485a99a81caa933928ed08d7a38ef88b (patch)
treef18c41d7794d546b6562dd2aa36932c78f00a16a /test/vfd_swmr_bigset_writer.c
parent7e176db164d1a6f944e703c612c4952b15d333f4 (diff)
downloadhdf5-78375882485a99a81caa933928ed08d7a38ef88b.zip
hdf5-78375882485a99a81caa933928ed08d7a38ef88b.tar.gz
hdf5-78375882485a99a81caa933928ed08d7a38ef88b.tar.bz2
VFD SWMR: normalization with develop (#1472)
Much normalization with develop. Still needs tools changes wrt VFD plugins.
Diffstat (limited to 'test/vfd_swmr_bigset_writer.c')
-rw-r--r--test/vfd_swmr_bigset_writer.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/vfd_swmr_bigset_writer.c b/test/vfd_swmr_bigset_writer.c
index 8a45a87..357c3b1 100644
--- a/test/vfd_swmr_bigset_writer.c
+++ b/test/vfd_swmr_bigset_writer.c
@@ -378,7 +378,7 @@ state_init(state_t *s, int argc, char **argv)
s->vds = vds_single;
break;
case 'N':
- /* Disable named pipes, mainly for running the writer and reader seperately */
+ /* Disable named pipes, mainly for running the writer and reader separately */
s->use_named_pipe = false;
break;
case 'd':
@@ -1168,7 +1168,7 @@ error:
* --Generate checksum for the metadata file
* --Write the tick number and the checksum to the checksum file
*
- * Return: 0 if test is sucessful
+ * Return: 0 if test is successful
* 1 if test fails
*
*-------------------------------------------------------------------------
@@ -2012,7 +2012,7 @@ verify_extensible_dset(state_t *s, unsigned int which, mat_t *mat, unsigned fini
dset_id = s->dataset[which];
- /* Attempt to check the availablity of the chunks for a number times
+ /* Attempt to check the availability of the chunks for a number times
* (NUM_ATTEMPTS) before reporting it as a failure */
for (i = 0; i < NUM_ATTEMPTS; i++) {
if (H5Drefresh(dset_id) < 0) {
@@ -2543,7 +2543,7 @@ error:
int
main(int argc, char **argv)
{
- mat_t * mat;
+ mat_t * mat = NULL;
hid_t fcpl = H5I_INVALID_HID;
unsigned which;
state_t s;