diff options
author | Tim Rice <tim@multitalents.net> | 2015-02-23 21:50:34 -0800 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2015-02-23 21:50:34 -0800 |
commit | 1221b22023dce38cbc90ba77eae4c5d78c77a5e6 (patch) | |
tree | e7b5efb29e4ca27b81d3cc7fcc1ac4dd5a143a94 | |
parent | 4c356308a88d309c796325bb75dce90ca16591d5 (diff) |
portablity fix: s/__inline__/inline/
-rw-r--r-- | cipher-aesctr.c | 2 |
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 | */ |
30 | static __inline__ void | 30 | static inline void |
31 | aesctr_inc(u8 *ctr, u32 len) | 31 | aesctr_inc(u8 *ctr, u32 len) |
32 | { | 32 | { |
33 | ssize_t i; | 33 | ssize_t i; |