mirror of
https://github.com/openssh/libopenssh
synced 2026-04-16 09:45:53 +00:00
constify arguments
This commit is contained in:
committed by
Markus Friedl
parent
222ddc9e44
commit
044fea56f4
@@ -238,7 +238,7 @@ test_header(const char *file, int line, const char *a1, const char *a2,
|
||||
|
||||
void
|
||||
assert_bignum(const char *file, int line, const char *a1, const char *a2,
|
||||
BIGNUM *aa1, BIGNUM *aa2, enum test_predicate pred)
|
||||
const BIGNUM *aa1, const BIGNUM *aa2, enum test_predicate pred)
|
||||
{
|
||||
int r = BN_cmp(aa1, aa2);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user