mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-05-23 21:30:19 +00:00
fuzz: termio.MessageData small_size is max of 255, not 256
This commit is contained in:
@@ -9,7 +9,7 @@ const Config = @import("../config.zig").Config;
|
||||
pub const Message = union(enum) {
|
||||
/// Represents a write request. Magic number comes from the max size
|
||||
/// we want this union to be.
|
||||
pub const WriteReq = termio.MessageData(u8, 256);
|
||||
pub const WriteReq = termio.MessageData(u8, 255);
|
||||
|
||||
/// Set the title of the surface.
|
||||
/// TODO: we should change this to a "WriteReq" style structure in
|
||||
|
||||
Reference in New Issue
Block a user