aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bn
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-21 16:12:59 +0000
committerMatt Caswell <matt@openssl.org>2015-01-22 09:20:08 +0000
commit7a2cb6f034568c159377096e3fa15fd67695da14 (patch)
tree3cc98faf9186e8c959a6c9de5c65a0495e253c7a /crypto/bn
parent51428a12e4d9fe0583d28b0ee65074c1a22d044a (diff)
downloadopenssl-7a2cb6f034568c159377096e3fa15fd67695da14.tar.gz
Fix indent comment corruption issue
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/bn')
-rw-r--r--crypto/bn/bn_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_lib.c b/crypto/bn/bn_lib.c
index 133fbb5a57..e664fa6df2 100644
--- a/crypto/bn/bn_lib.c
+++ b/crypto/bn/bn_lib.c
@@ -357,12 +357,12 @@ static BN_ULONG *bn_expand_internal(const BIGNUM *b, int words)
case 2: A[1]=B[1];
case 1: A[0]=B[0];
case 0:
+ ;
/*
* workaround for ultrix cc: without 'case 0', the optimizer does
* the switch table by doing a=top&3; a--; goto jump_table[a];
* which fails for top== 0
*/
- ;
}
}