aboutsummaryrefslogtreecommitdiffstats
path: root/include/util.h
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2018-07-23 16:22:09 -0400
committerLibravatar Brian Ashworth <bosrsf04@gmail.com>2018-07-23 21:33:17 -0400
commitd56d62c1c0b504d6c414f4b970a4a996cdadd879 (patch)
tree4fd6d25416f71f44e8e7a676edf80617123924e1 /include/util.h
parentSwitch to using a function to parse booleans (diff)
downloadsway-d56d62c1c0b504d6c414f4b970a4a996cdadd879.tar.gz
sway-d56d62c1c0b504d6c414f4b970a4a996cdadd879.tar.zst
sway-d56d62c1c0b504d6c414f4b970a4a996cdadd879.zip
Remove unneeded const
Diffstat (limited to 'include/util.h')
-rw-r--r--include/util.h2
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);
56 * toggling is not desired, pass in true for current so that toggling values 56 * toggling is not desired, pass in true for current so that toggling values
57 * get parsed as not true. 57 * get parsed as not true.
58 */ 58 */
59bool parse_boolean(const char *boolean, const bool current); 59bool parse_boolean(const char *boolean, bool current);
60 60
61/** 61/**
62 * Given a path string, recurseively resolves any symlinks to their targets 62 * Given a path string, recurseively resolves any symlinks to their targets