summaryrefslogtreecommitdiffstats
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:42 +0200
commit3c7fcdfdd41eeb509cbdde38486d18ed1f013447 (patch)
tree03cba11e95de32a62229bb80fda21ee974fa6236
parente356ac5c0699d49d13bc593d24d3fdf47586a7da (diff)
RT3547: Add missing static qualifier
Reviewed-by: Ben Laurie <ben@openssl.org> (cherry picked from commit 87d388c955c14a7c1371f9c7555fb429a406a3d3)
-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)));
}