Skip to content
Snippets Groups Projects
Commit b4b8969d authored by Kurt Cancemi's avatar Kurt Cancemi Committed by Emilia Kasper
Browse files

RT3547: Add missing static qualifier


Reviewed-by: default avatarBen Laurie <ben@openssl.org>
(cherry picked from commit 87d388c9)
parent 010d3762
No related branches found
No related tags found
No related merge requests found
......@@ -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)));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment