diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-11-08 15:35:32 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-08 15:35:32 -0800 |
commit | f3fa1838024dc0f3741d2f9654af92f6a1bb34bd (patch) | |
tree | 0a8ba5a56fe117125b506ea9529186aeb1c97ff4 /setup.c | |
parent | 5c355059c379a55366bed573d4e65dba4b5a0565 (diff) | |
download | git-f3fa1838024dc0f3741d2f9654af92f6a1bb34bd.tar.gz git-f3fa1838024dc0f3741d2f9654af92f6a1bb34bd.tar.xz |
Style: place opening brace of a function definition at column 1
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'setup.c')
-rw-r--r-- | setup.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -206,7 +206,8 @@ static const char *set_work_tree(const char *dir) return NULL; } -void setup_work_tree(void) { +void setup_work_tree(void) +{ const char *work_tree = get_git_work_tree(); const char *git_dir = get_git_dir(); if (!is_absolute_path(git_dir)) |