RT3547: Add missing static qualifier
Reviewed-by: Ben Laurie <ben@openssl.org>
(cherry picked from commit 87d388c955
)
This commit is contained in:
parent
010d37621d
commit
b4b8969df8
1 changed files with 1 additions and 1 deletions
|
@ -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)));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue