From: Kurt Cancemi Date: Sun, 28 Sep 2014 19:28:49 +0000 (-0400) Subject: RT3547: Add missing static qualifier X-Git-Tag: OpenSSL_1_0_1k~114 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3c7fcdfdd41eeb509cbdde38486d18ed1f013447;p=oweals%2Fopenssl.git RT3547: Add missing static qualifier Reviewed-by: Ben Laurie (cherry picked from commit 87d388c955c14a7c1371f9c7555fb429a406a3d3) --- diff --git a/crypto/constant_time_locl.h b/crypto/constant_time_locl.h index c0483939fe..7b339a7c31 100644 --- a/crypto/constant_time_locl.h +++ b/crypto/constant_time_locl.h @@ -204,7 +204,7 @@ static inline unsigned char constant_time_select_8(unsigned char mask, return (unsigned char)(constant_time_select(mask, a, b)); } -inline int constant_time_select_int(unsigned int mask, int a, int b) +static inline int constant_time_select_int(unsigned int mask, int a, int b) { return (int)(constant_time_select(mask, (unsigned)(a), (unsigned)(b))); }