diff options
Diffstat (limited to 'src/cmd/move.zig')
-rw-r--r-- | src/cmd/move.zig | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/cmd/move.zig b/src/cmd/move.zig index 40e745d..557566f 100644 --- a/src/cmd/move.zig +++ b/src/cmd/move.zig @@ -1,6 +1,5 @@ const std = @import("std"); const Allocator = std.mem.Allocator; -const print = std.debug.print; const types = @import("./lib/types.zig"); const CommandStatus = types.CommandStatus; @@ -11,11 +10,8 @@ pub const Move = struct { _ = move; const error_msg = "MOVE command not yet implemented\n"; - if (ctx.output_capture) |capture| { - try capture.write(error_msg); - } else { - print("{s}", .{error_msg}); - } + var writer = ctx.output_writer; + try writer.write(error_msg); return CommandStatus{ .Code = 1 }; } }; |