From 129ca6c05d9ad155b02ed9198798c5e33673f195 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 2 Aug 2012 14:32:17 -0400 Subject: fix missing static in getusershell (namespace pollution) --- src/misc/getusershell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/misc/getusershell.c b/src/misc/getusershell.c index 11e697b6..683158c8 100644 --- a/src/misc/getusershell.c +++ b/src/misc/getusershell.c @@ -6,7 +6,7 @@ static const char defshells[] = "/bin/sh\n/bin/csh\n"; static char *line; -size_t linesize; +static size_t linesize; static FILE *f; void endusershell(void) -- cgit v1.2.1