summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_mul.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/bn/bn_mul.c')
-rw-r--r--crypto/bn/bn_mul.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/bn/bn_mul.c b/crypto/bn/bn_mul.c
index dc6b6f5a12..c3864b8c69 100644
--- a/crypto/bn/bn_mul.c
+++ b/crypto/bn/bn_mul.c
@@ -115,12 +115,12 @@ BN_ULONG bn_sub_part_words(BN_ULONG *r,
r[1] = a[1];
if (--dl <= 0)
break;
- /* fall thru */
+ /* fall through */
case 2:
r[2] = a[2];
if (--dl <= 0)
break;
- /* fall thru */
+ /* fall through */
case 3:
r[3] = a[3];
if (--dl <= 0)