kasumi: Fix build with gcc5 that changed behavior of inline

GCC 5 has changed inline semantics (https://gcc.gnu.org/gcc-5/porting_to.html)
and apparently that now fails to link.
This commit is contained in:
Holger Hans Peter Freyther 2016-01-21 15:50:04 +01:00
parent e7c18dd59f
commit fb7e683575
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@
/* Test vectors are taken from TS 135 202 */
inline int _compare_mem(uint8_t * x, uint8_t * y, size_t len)
inline static int _compare_mem(uint8_t * x, uint8_t * y, size_t len)
{
if (0 != memcmp(x, y, len)) {
printf ("X: %s\t", osmo_hexdump_nospc(x, len));