diff options
author | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-06-30 21:07:54 +1000 |
---|---|---|
committer | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-06-30 21:07:54 +1000 |
commit | fc6fde7d90ee031539252cb8832e11c38cfed686 (patch) | |
tree | 704f015ce415d45d6aacb16be0380ed8dfcb5c7d /sway/commands/move.c | |
parent | 96c8c024830f13a27790d4ea36b640df383a7f49 (diff) |
Fix compile error
Diffstat (limited to 'sway/commands/move.c')
-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 4061df3a..a4fae388 100644 --- a/sway/commands/move.c +++ b/sway/commands/move.c @@ -184,7 +184,7 @@ static struct cmd_results *cmd_move_workspace(struct sway_container *current, } static struct cmd_results *move_in_direction(struct sway_container *container, - enum wlr_direction direction, int move_amt) { + enum movement_direction direction, int move_amt) { if (container->type == C_WORKSPACE) { return cmd_results_new(CMD_FAILURE, "move", "Cannot move workspaces in a direction"); |