summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authorBrent Cook <bcook@cvs.openbsd.org>2016-05-30 22:00:44 +0000
committerBrent Cook <bcook@cvs.openbsd.org>2016-05-30 22:00:44 +0000
commit9551774c5914a67b6673a69282d874ff88ca99b3 (patch)
treebe2edac3fe2f270ceb104b71355c6e600726d80d /regress
parent0c00191c9799cfb58cb9740972b8ecd80a4ccc89 (diff)
Gix misleading indent pointed out by GCC 6.1.
ok beck@ jsing@
Diffstat (limited to 'regress')
-rw-r--r--regress/lib/libcrypto/engine/enginetest.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/regress/lib/libcrypto/engine/enginetest.c b/regress/lib/libcrypto/engine/enginetest.c
index 4451efb88da..bb2472a31d6 100644
--- a/regress/lib/libcrypto/engine/enginetest.c
+++ b/regress/lib/libcrypto/engine/enginetest.c
@@ -208,11 +208,11 @@ int main(int argc, char *argv[])
printf("\nAdding stopped at %i, (%s,%s)\n",
loop, ENGINE_get_id(block[loop]),
ENGINE_get_name(block[loop]));
- goto cleanup_loop;
- } else
- printf("."); fflush(stdout);
+ break;
+ }
+ printf(".");
+ fflush(stdout);
}
-cleanup_loop:
printf("\nAbout to empty the engine-type list\n");
while ((ptr = ENGINE_get_first()) != NULL) {
if (!ENGINE_remove(ptr)) {