Commit 18117a6c10ac67d42f578eef3c7d1fb416e7f860

Patrick Steinhardt 2018-02-09T11:43:13

config_file: use new line to declare new variable

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/src/config_file.c b/src/config_file.c
index 8ef94af..c621a41 100644
--- a/src/config_file.c
+++ b/src/config_file.c
@@ -549,7 +549,8 @@ static int config_delete(git_config_backend *cfg, const char *name)
 {
 	config_entry_list *var;
 	diskfile_backend *b = (diskfile_backend *)cfg;
-	refcounted_strmap *map;	git_strmap *values;
+	refcounted_strmap *map;
+	git_strmap *values;
 	char *key;
 	int result;
 	khiter_t pos;