diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2018-07-23 16:22:09 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2018-07-23 16:22:09 -0400 |
| commit | 9151af222014f2bd7380251c3f1be917da85c0a1 (patch) | |
| tree | 4fd6d25416f71f44e8e7a676edf80617123924e1 /include/util.h | |
| parent | daaa4ad3b96dc9d6e720576e3e62099fe8d7b8ec (diff) | |
Remove unneeded const
Diffstat (limited to 'include/util.h')
| -rw-r--r-- | include/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/util.h b/include/util.h index 40f2c7b1..bda941ce 100644 --- a/include/util.h +++ b/include/util.h @@ -56,7 +56,7 @@ uint32_t parse_color(const char *color); * toggling is not desired, pass in true for current so that toggling values * get parsed as not true. */ -bool parse_boolean(const char *boolean, const bool current); +bool parse_boolean(const char *boolean, bool current); /** * Given a path string, recurseively resolves any symlinks to their targets |
