From 1121a8786e8851cc9d03cb8142c0ecadd17221f6 Mon Sep 17 00:00:00 2001 From: Nanako Shiraishi Date: Wed, 16 Jul 2008 19:42:18 +0900 Subject: [PATCH] parse-options.c: make check_typos() static This function is not used by any other file. Signed-off-by: Nanako Shiraishi Signed-off-by: Junio C Hamano --- parse-options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse-options.c b/parse-options.c index 2fd5edbf53..987b015719 100644 --- a/parse-options.c +++ b/parse-options.c @@ -214,7 +214,7 @@ is_abbreviated: return -2; } -void check_typos(const char *arg, const struct option *options) +static void check_typos(const char *arg, const struct option *options) { if (strlen(arg) < 3) return; -- 2.11.4.GIT