From 8e53c7a62ecb7b61d0c67d8947f72b3fab087ee0 Mon Sep 17 00:00:00 2001 From: toddouska Date: Mon, 25 Mar 2013 11:50:15 -0700 Subject: [PATCH] fix inline type spot --- src/tls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tls.c b/src/tls.c index 77fccfbb4..9059ce2c0 100644 --- a/src/tls.c +++ b/src/tls.c @@ -359,7 +359,7 @@ int CyaSSL_make_eap_keys(CYASSL* ssl, void* msk, unsigned int len, /*** next for static INLINE s copied from cyassl_int.c ***/ /* convert 16 bit integer to opaque */ -INLINE static void c16toa(word16 u16, byte* c) +static INLINE void c16toa(word16 u16, byte* c) { c[0] = (u16 >> 8) & 0xff; c[1] = u16 & 0xff;