summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-09-15 14:08:24 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-09-15 14:08:24 +0000
commit00b0f2cb3e8235a6ff8c4d1c0476c687eb61afe6 (patch)
tree999c7fa51613e6286543de35646a6065e46c8d12
parent03e389cf049e4bbc2f6d0028dc320fb0583aad2c (diff)
Fix warning.
-rw-r--r--fips/rand/fips_randtest.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fips/rand/fips_randtest.c b/fips/rand/fips_randtest.c
index e8b52dba2a..58c1acecf5 100644
--- a/fips/rand/fips_randtest.c
+++ b/fips/rand/fips_randtest.c
@@ -220,7 +220,8 @@ static void compare(const unsigned char *result,const unsigned char *expected,
}
-static void run_test(unsigned char *key, int keylen, AES_PRNG_MCT *tv)
+static void run_test(const unsigned char *key, int keylen,
+ const AES_PRNG_MCT *tv)
{
unsigned char buf[16], dt[16];
int i, j;