diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2017-12-29 11:49:56 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-01-04 08:21:43 -0800 |
commit | 956cb53cd5610392b57c7c70a081608f99d44581 (patch) | |
tree | e1c9b6681c35ee0fb1da04e3ec45dd756d1edc81 /core/load-git.c | |
parent | e414e0b334b1bdff7779fbe05d5207f614c2c79d (diff) | |
download | subsurface-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.c | 2 |
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) |