summaryrefslogtreecommitdiff
path: root/remote.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-12-14 18:21:38 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-12-14 18:21:38 (GMT)
commit3c9f0df16a20071aa6810152dd7f4003f3d96c4b (patch)
treea6f870082686ba67f103da752cc8a8e932c7d8f7 /remote.c
parenta5e74b4baaf17ea069fa451c405ef219eb61ee7a (diff)
parent08e9df2395b1116ffe932eaedbc3c89676902362 (diff)
downloadgit-3c9f0df16a20071aa6810152dd7f4003f3d96c4b.zip
git-3c9f0df16a20071aa6810152dd7f4003f3d96c4b.tar.gz
git-3c9f0df16a20071aa6810152dd7f4003f3d96c4b.tar.bz2
Merge branch 'jk/multi-line-indent-style-fix'
Style fix. * jk/multi-line-indent-style-fix: style: indent multiline "if" conditions to align
Diffstat (limited to 'remote.c')
-rw-r--r--remote.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/remote.c b/remote.c
index 8a6dbbb..8b9d090 100644
--- a/remote.c
+++ b/remote.c
@@ -355,7 +355,7 @@ static int handle_config(const char *key, const char *value, void *cb)
remote = make_remote(name, namelen);
remote->origin = REMOTE_CONFIG;
if (current_config_scope() == CONFIG_SCOPE_LOCAL ||
- current_config_scope() == CONFIG_SCOPE_WORKTREE)
+ current_config_scope() == CONFIG_SCOPE_WORKTREE)
remote->configured_in_repo = 1;
if (!strcmp(subkey, "mirror"))
remote->mirror = git_config_bool(key, value);