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
path: root/utf8.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2007-11-09 02:35:32 +0300
committerJunio C Hamano <gitster@pobox.com>2007-11-09 02:35:32 +0300
commitf3fa1838024dc0f3741d2f9654af92f6a1bb34bd (patch)
tree0a8ba5a56fe117125b506ea9529186aeb1c97ff4 /utf8.c
parent5c355059c379a55366bed573d4e65dba4b5a0565 (diff)
Style: place opening brace of a function definition at column 1
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/utf8.c b/utf8.c
index 4efef6faf7..8095a71d39 100644
--- a/utf8.c
+++ b/utf8.c
@@ -11,7 +11,8 @@ struct interval {
};
/* auxiliary function for binary search in interval table */
-static int bisearch(ucs_char_t ucs, const struct interval *table, int max) {
+static int bisearch(ucs_char_t ucs, const struct interval *table, int max)
+{
int min = 0;
int mid;