diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-08-27 08:16:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-27 08:16:25 -0400 |
commit | fed69768403d236eb464928fc0886a89a6efc1a2 (patch) | |
tree | 2947a0c67b309c57400d19d520cced8eceaa273b /sway | |
parent | d6a5dfc913ba958d38af907ddb7acd7483a1cee7 (diff) | |
parent | 31c3c8a365f0a2afc3c2c28e7f0913b566fd656b (diff) | |
download | sway-fed69768403d236eb464928fc0886a89a6efc1a2.tar.xz |
Merge pull request #2522 from ascent12/build_fix
Build fix
Diffstat (limited to 'sway')
-rw-r--r-- | sway/commands/move.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/move.c b/sway/commands/move.c index d0f6b9ea..7b7cb8f3 100644 --- a/sway/commands/move.c +++ b/sway/commands/move.c @@ -52,7 +52,7 @@ static struct sway_container *output_in_direction(const char *direction_string, { "right", WLR_DIRECTION_RIGHT }, }; - enum wlr_direction direction; + enum wlr_direction direction = 0; for (size_t i = 0; i < sizeof(names) / sizeof(names[0]); ++i) { if (strcasecmp(names[i].name, direction_string) == 0) { |