From f911a0a22fedc3e1e364eac988b68ea5e5a10058 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Sun, 24 Oct 2021 08:55:26 -0700 Subject: [PATCH] glfw: correct clipboard test Signed-off-by: Stephen Gutekanst --- glfw/src/clipboard.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glfw/src/clipboard.zig b/glfw/src/clipboard.zig index 0a76c9c8..5752fc83 100644 --- a/glfw/src/clipboard.zig +++ b/glfw/src/clipboard.zig @@ -58,5 +58,5 @@ test "getClipboardString" { try glfw.init(); defer glfw.terminate(); - _ = glfw.getClipboardString() catch |err| std.debug.print("can't get clipboard, not supported by OS? error={}\n", .{err});; + _ = glfw.getClipboardString() catch |err| std.debug.print("can't get clipboard, not supported by OS? error={}\n", .{err}); }