aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/constant_time_locl.h
diff options
context:
space:
mode:
authorKurt Cancemi <kurt@x64architecture.com>2014-09-28 15:28:49 -0400
committerEmilia Kasper <emilia@openssl.org>2014-10-17 11:41:39 +0200
commit87d388c955c14a7c1371f9c7555fb429a406a3d3 (patch)
treed78d9a7b4a80ff2829ef1a2194fa502b8e7a6e96 /crypto/constant_time_locl.h
parentc6e9b39ce83ce3e096e5befd01aaf8c5c2717980 (diff)
downloadopenssl-87d388c955c14a7c1371f9c7555fb429a406a3d3.tar.gz
RT3547: Add missing static qualifier
Reviewed-by: Ben Laurie <ben@openssl.org>
Diffstat (limited to 'crypto/constant_time_locl.h')
-rw-r--r--crypto/constant_time_locl.h2
1 files changed, 1 insertions, 1 deletions
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)));
}