From 1221b22023dce38cbc90ba77eae4c5d78c77a5e6 Mon Sep 17 00:00:00 2001 From: Tim Rice Date: Mon, 23 Feb 2015 21:50:34 -0800 Subject: portablity fix: s/__inline__/inline/ --- cipher-aesctr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cipher-aesctr.c b/cipher-aesctr.c index 850bbf7d..5957f4bb 100644 --- a/cipher-aesctr.c +++ b/cipher-aesctr.c @@ -27,7 +27,7 @@ * the counter is of size 'len' bytes and stored in network-byte-order. * (LSB at ctr[len-1], MSB at ctr[0]) */ -static __inline__ void +static inline void aesctr_inc(u8 *ctr, u32 len) { ssize_t i; -- cgit v1.2.3