From dd118a176a5b31923dbb2f42fe8809c813b0b935 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 3 Jul 2002 06:48:52 +0000 Subject: Fix the forword prototype to be a static for this static function. (This used to be commit bb1aa5e1d2e4f71dfaab0ade24ed15d1b5fdfc33) --- source3/lib/md5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/lib/md5.c b/source3/lib/md5.c index 0d8f8e74d9..2121b17047 100644 --- a/source3/lib/md5.c +++ b/source3/lib/md5.c @@ -22,7 +22,7 @@ #include "md5.h" -void MD5Transform(uint32 buf[4], uint32 const in[16]); +static void MD5Transform(uint32 buf[4], uint32 const in[16]); /* * Note: this code is harmless on little-endian machines. -- cgit