summaryrefslogtreecommitdiffstats
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:27:47 +0000
commitcc4cd8213ee3e9eb0c7925d3076647b63febca10 (patch)
tree2e11c44ce3219e535795479756a07d0a406e0070 /crypto/bn
parentd18d367d9082a4322e86c76a2e3d6efddf1335f6 (diff)
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 09c8313622..7a8f8c1450 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
*/
- ;
}
}