From 30c2bb48b9fa97cd007d0e262eb7986bfe89376e Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Wed, 29 Feb 2012 14:23:37 +1100 Subject: [PATCH] matching constification of arguments --- unittests/test_helper/test_helper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittests/test_helper/test_helper.h b/unittests/test_helper/test_helper.h index 4b62180..edef21a 100644 --- a/unittests/test_helper/test_helper.h +++ b/unittests/test_helper/test_helper.h @@ -41,7 +41,7 @@ void test_done(void); void ssl_err_check(const char *file, int line); 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); void assert_string(const char *file, int line, const char *a1, const char *a2, const char *aa1, const char *aa2, enum test_predicate pred);