summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cipher-aesctr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cipher-aesctr.c b/cipher-aesctr.c
index 850bbf7db..5957f4bb4 100644
--- a/cipher-aesctr.c
+++ b/cipher-aesctr.c
@@ -27,7 +27,7 @@
27 * the counter is of size 'len' bytes and stored in network-byte-order. 27 * the counter is of size 'len' bytes and stored in network-byte-order.
28 * (LSB at ctr[len-1], MSB at ctr[0]) 28 * (LSB at ctr[len-1], MSB at ctr[0])
29 */ 29 */
30static __inline__ void 30static inline void
31aesctr_inc(u8 *ctr, u32 len) 31aesctr_inc(u8 *ctr, u32 len)
32{ 32{
33 ssize_t i; 33 ssize_t i;