diff options
author | 2016-05-30 22:00:43 +0000 | |
---|---|---|
committer | 2016-05-30 22:00:43 +0000 | |
commit | 2021f15f25fb8c8e619d80dbf0dca3019ef690e1 (patch) | |
tree | 07f1a8987c1e284d7856d2a9452efd8c1950b29f | |
parent | Move __getcwd from ASM to HIDDEN: we don't want the literal __getcwd symbol (diff) | |
download | wireguard-openbsd-2021f15f25fb8c8e619d80dbf0dca3019ef690e1.tar.xz wireguard-openbsd-2021f15f25fb8c8e619d80dbf0dca3019ef690e1.zip |
Gix misleading indent pointed out by GCC 6.1.
ok beck@ jsing@
-rw-r--r-- | regress/lib/libcrypto/engine/enginetest.c | 8 |
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)) { |