summaryrefslogtreecommitdiffstats
path: root/crypto
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:48:55 +0200
commitbfb7bf1a28292734c53cce2297dc5b53c6614a6f (patch)
tree98de07872a3c283e43f492e184b6d9a4d402556c /crypto
parentf33636faf77aa2b8bb96f75b9719cd3f5b41e3ba (diff)
RT3547: Add missing static qualifier
Reviewed-by: Ben Laurie <ben@openssl.org> (cherry picked from commit 87d388c955c14a7c1371f9c7555fb429a406a3d3)
Diffstat (limited to 'crypto')
-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)));
}