Fix formatting nit in constant_time_test.c.

This commit is contained in:
Brian Smith 2018-05-18 13:05:24 -10:00
parent 3d9c4001c5
commit 7d34afc5f0

View File

@ -53,7 +53,7 @@
int bssl_constant_time_test_main(void);
static int test_binary_op_w(crypto_word (*op)(crypto_word a, crypto_word b),
const char* op_name, crypto_word a, crypto_word b,
const char *op_name, crypto_word a, crypto_word b,
int is_true) {
crypto_word c = op(a, b);
if (is_true && c != CONSTTIME_TRUE_W) {