summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_lib.c
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:51:49 +0000
commit175af9de8995d2128b2820fd1faff8515634ae10 (patch)
treefa4fb4553fab11632853f8730b22c3dcef058cd9 /crypto/bn/bn_lib.c
parent53d6e678dcc3487bb921e617a0c283422d24db43 (diff)
Fix indent comment corruption issue
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/bn/bn_lib.c')
-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 fedf864988..4627153e3d 100644
--- a/crypto/bn/bn_lib.c
+++ b/crypto/bn/bn_lib.c
@@ -356,12 +356,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
*/
- ;
}
}