From 5538403b83287b77df17625e7edee45b80cfbc4b Mon Sep 17 00:00:00 2001 From: delphij Date: Fri, 27 Mar 2015 18:23:06 +0000 Subject: Fix remaining warnings. MFC after: 2 weeks --- sbin/md5/md5.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sbin/md5/md5.c') diff --git a/sbin/md5/md5.c b/sbin/md5/md5.c index 0c03c52..d7de5c0 100644 --- a/sbin/md5/md5.c +++ b/sbin/md5/md5.c @@ -91,7 +91,7 @@ typedef union { /* algorithm function table */ -struct Algorithm_t Algorithm[] = { +static struct Algorithm_t Algorithm[] = { { "md5", "MD5", &MD5TestOutput, (DIGEST_Init*)&MD5Init, (DIGEST_Update*)&MD5_Update, (DIGEST_End*)&MD5End, &MD5Data, &MD5File }, @@ -282,7 +282,7 @@ MDTimeTrial(Algorithm_t *alg) * Digests a reference suite of strings and prints the results. */ -const char *MDTestInput[MDTESTCOUNT] = { +static const char *MDTestInput[MDTESTCOUNT] = { "", "a", "abc", -- cgit v1.1