diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:40:05 +0200 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:40:05 +0200 |
| commit | 96f2ff793c7606c8979d45b62b827c1cc50667d1 (patch) | |
| tree | 6746c09489a28d0f08c35b279503f40ab92d5c0e /src/command/send_to_output.zig | |
| parent | 7ddcebbbab8479ad80574db40aee8e894e411b2e (diff) | |
| download | river-96f2ff793c7606c8979d45b62b827c1cc50667d1.tar.gz river-96f2ff793c7606c8979d45b62b827c1cc50667d1.tar.xz | |
Make Output a toplevel struct
Diffstat (limited to 'src/command/send_to_output.zig')
| -rw-r--r-- | src/command/send_to_output.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/send_to_output.zig b/src/command/send_to_output.zig index e64d606..2cf0fea 100644 --- a/src/command/send_to_output.zig +++ b/src/command/send_to_output.zig @@ -2,7 +2,7 @@ const c = @import("../c.zig"); const std = @import("std"); const Arg = @import("../command.zig").Arg; -const Output = @import("../output.zig").Output; +const Output = @import("../output.zig"); const Seat = @import("../seat.zig"); /// Send the focused view to the the next or the previous output, depending on |
