glfw: correct clipboard test

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2021-10-24 08:55:26 -07:00
parent 4850648a2e
commit f911a0a22f

View file

@ -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});
}