From 3192b1354686f6e6a76b125577f8587df72a160b Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 12 Nov 2023 22:20:28 -0800 Subject: [PATCH] terminal: our mode size changed --- src/terminal/modes.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/terminal/modes.zig b/src/terminal/modes.zig index cd2e1f45a..28a4d5a33 100644 --- a/src/terminal/modes.zig +++ b/src/terminal/modes.zig @@ -69,7 +69,7 @@ pub const ModeState = struct { // We have this here so that we explicitly fail when we change the // size of modes. The size of modes is NOT particularly important, // we just want to be mentally aware when it happens. - try std.testing.expectEqual(4, @sizeOf(ModePacked)); + try std.testing.expectEqual(8, @sizeOf(ModePacked)); } };