diff options
author | dds <dds@FreeBSD.org> | 2007-11-08 09:09:02 +0000 |
---|---|---|
committer | dds <dds@FreeBSD.org> | 2007-11-08 09:09:02 +0000 |
commit | bb2ff1033f157496f7ea65a9d04f414b24f8a94b (patch) | |
tree | 463ec2789ff64b26f87b2e388a1cb80f78c56cd7 | |
parent | 8f74341105292d0da80d56d1baf3bf57323f8494 (diff) | |
download | FreeBSD-src-bb2ff1033f157496f7ea65a9d04f414b24f8a94b.zip FreeBSD-src-bb2ff1033f157496f7ea65a9d04f414b24f8a94b.tar.gz |
Make function's definition follow its declared visibility.
Found by: CScout
-rw-r--r-- | usr.bin/mail/aux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/mail/aux.c b/usr.bin/mail/aux.c index fa820b4..e764aac 100644 --- a/usr.bin/mail/aux.c +++ b/usr.bin/mail/aux.c @@ -70,7 +70,7 @@ savestr(str) /* * Make a copy of new argument incorporating old one. */ -char * +static char * save2str(str, old) char *str, *old; { |