Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2010-01-12 09:23:35 +0300
committerJunio C Hamano <gitster@pobox.com>2010-01-12 10:16:16 +0300
commitcc5711424b7ae36276a40c06ede5d95f87ca20f0 (patch)
treec83ce2d4c10348692e8c9159ef2270618505395b /pretty.c
parentf1c92c6369511396ab3a409b5c9957066b72f6a3 (diff)
pretty.c: mark file-local function static
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pretty.c')
-rw-r--r--pretty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pretty.c b/pretty.c
index 8f5bd1ab7f..9001379a9d 100644
--- a/pretty.c
+++ b/pretty.c
@@ -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';
}