summaryrefslogtreecommitdiffstats
path: root/core/load-git.c
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2017-12-29 11:49:56 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-01-04 08:21:43 -0800
commit956cb53cd5610392b57c7c70a081608f99d44581 (patch)
treee1c9b6681c35ee0fb1da04e3ec45dd756d1edc81 /core/load-git.c
parente414e0b334b1bdff7779fbe05d5207f614c2c79d (diff)
downloadsubsurface-956cb53cd5610392b57c7c70a081608f99d44581.tar.gz
Turn autogroup from short into bool
All users of autogroup are clearly expecting a boolean value, so let the type reflect this. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/load-git.c')
-rw-r--r--core/load-git.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/load-git.c b/core/load-git.c
index 5411eafcb..7214f864e 100644
--- a/core/load-git.c
+++ b/core/load-git.c
@@ -833,7 +833,7 @@ static void parse_settings_autogroup(char *line, struct membuffer *str, void *_u
(void) line;
(void) str;
(void) _unused;
- set_autogroup(1);
+ set_autogroup(true);
}
static void parse_settings_units(char *line, struct membuffer *str, void *unused)