From: Andrew Bartlett Date: Wed, 3 Jul 2002 06:48:52 +0000 (+0000) Subject: Fix the forword prototype to be a static for this static function. X-Git-Tag: samba-3.0.0alpha18~86 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb1aa5e1d2e4f71dfaab0ade24ed15d1b5fdfc33;p=thirdparty%2Fsamba.git Fix the forword prototype to be a static for this static function. --- diff --git a/source/lib/md5.c b/source/lib/md5.c index 0d8f8e74d92..2121b170479 100644 --- a/source/lib/md5.c +++ b/source/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.