summaryrefslogtreecommitdiff
path: root/lib/accelerated/x86/sha-padlock.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/accelerated/x86/sha-padlock.c')
-rw-r--r--lib/accelerated/x86/sha-padlock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/accelerated/x86/sha-padlock.c b/lib/accelerated/x86/sha-padlock.c
index 41602832a0..48e21125a4 100644
--- a/lib/accelerated/x86/sha-padlock.c
+++ b/lib/accelerated/x86/sha-padlock.c
@@ -120,10 +120,10 @@ _nettle_write_be32(unsigned length, uint8_t * dst, uint32_t * src)
abort();
case 3:
dst[--j] = (word >> 8) & 0xff;
- /* Fall through */
+ FALLTHROUGH;
case 2:
dst[--j] = (word >> 16) & 0xff;
- /* Fall through */
+ FALLTHROUGH;
case 1:
dst[--j] = (word >> 24) & 0xff;
}