diff options
author | Christoph Gysin <christoph.gysin@gmail.com> | 2015-11-29 23:17:42 +0200 |
---|---|---|
committer | Christoph Gysin <christoph.gysin@gmail.com> | 2015-11-29 23:17:55 +0200 |
commit | ae7ed795730398d50e6408575a1edfbd5c34bd3c (patch) | |
tree | 365d13bf0c0d8aae3aaec69bb6159ccd5cd91000 /include | |
parent | 82d464bb90af7fed57a36aacc2dce22994849bac (diff) |
config: Store 'enabled' as int
Diffstat (limited to 'include')
-rw-r--r-- | include/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/config.h b/include/config.h index 9caadec8..631c8178 100644 --- a/include/config.h +++ b/include/config.h @@ -40,7 +40,7 @@ struct sway_mode { */ struct output_config { char *name; - bool enabled; + int enabled; int width, height; int x, y; char *background; |