From: Nanako Shiraishi Date: Wed, 16 Jul 2008 10:42:18 +0000 (+0900) Subject: parse-options.c: make check_typos() static X-Git-Tag: v1.6.0-rc0~46 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=1121a8786e8851cc9d03cb8142c0ecadd17221f6;p=git.git 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 --- diff --git a/parse-options.c b/parse-options.c index 2fd5edbf5..987b01571 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;