style: removed extra semicolons

This commit is contained in:
Snaipe 2016-09-04 20:50:58 +02:00
parent 9a68415eb2
commit e7ab23d67a
2 changed files with 3 additions and 3 deletions

View file

@ -146,7 +146,7 @@ static int deserialize_test(struct criterion_test *test,
if (rc < 0) goto err; if (rc < 0) goto err;
rc = bxf_context_getobject(ctx, "criterion.suite.name", rc = bxf_context_getobject(ctx, "criterion.suite.name",
(void **)&suite->name);; (void **)&suite->name);
if (rc <= 0) goto err; if (rc <= 0) goto err;
rc = bxf_context_getobject(ctx, "criterion.suite.extra", rc = bxf_context_getobject(ctx, "criterion.suite.extra",
@ -159,7 +159,7 @@ static int deserialize_test(struct criterion_test *test,
if (rc < 0) goto err; if (rc < 0) goto err;
rc = bxf_context_getfnaddr(ctx, "criterion.suite.extra.fini", rc = bxf_context_getfnaddr(ctx, "criterion.suite.extra.fini",
&suite_data->fini);; &suite_data->fini);
if (rc < 0) goto err; if (rc < 0) goto err;
} }

View file

@ -148,7 +148,7 @@ glob *glob_empty() {
*/ */
glob *glob_blank() { glob *glob_blank() {
glob *tmp = new_glob(); glob *tmp = new_glob();
tmp->type = BLANK;; tmp->type = BLANK;
tmp->nullable = is_true; tmp->nullable = is_true;
tmp->derive = derive_blank; tmp->derive = derive_blank;
#ifdef _DEBUG_BRZ_ #ifdef _DEBUG_BRZ_