pretty.c: mark file-local function static

Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Junio C Hamano
2010-01-11 22:23:35 -08:00
parent f1c92c6369
commit cc5711424b
2 changed files with 1 additions and 2 deletions

View File

@ -83,7 +83,7 @@ static int get_one_line(const char *msg)
}
/* High bit set, or ISO-2022-INT */
int non_ascii(int ch)
static int non_ascii(int ch)
{
return !isascii(ch) || ch == '\033';
}