fix: fixed build error
All checks were successful
ci/crow/push/release Pipeline was successful
ci/crow/tag/build Pipeline was successful

This commit is contained in:
Grace Yoder 2026-06-25 16:46:59 -06:00
parent a553c9b060
commit 2f75723e16
Signed by: grace
SSH key fingerprint: SHA256:oG9v0ZlohsoMAg083HAwBGOcaPLF3nIuOlAW4MtASMo

View file

@ -16,10 +16,10 @@ pub fn main(init: std.process.Init) !void {
var clip = try Clip.OSC52.init(std.heap.page_allocator, init.io, std.heap.pageSize()); var clip = try Clip.OSC52.init(std.heap.page_allocator, init.io, std.heap.pageSize());
defer clip.free(); defer clip.free();
run(io, clip); try run(io, &clip);
} }
pub fn run(io: *std.Io, clip: anytype) !void { pub fn run(io: std.Io, clip: anytype) !void {
std.debug.print("\x1b[0;32mCopying the following to Pasteboard\x1b[0m\n", .{}); std.debug.print("\x1b[0;32mCopying the following to Pasteboard\x1b[0m\n", .{});
var buf: [4096]u8 = undefined; var buf: [4096]u8 = undefined;