mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-05-23 21:30:19 +00:00
flatpak: don't assume c_uint to be u32
Thanks pluie for the pointer.
This commit is contained in:
@@ -41,7 +41,7 @@ pub const FlatpakHostCommand = struct {
|
||||
clear_env: bool = false,
|
||||
/// Kill the sandbox when the caller disappears from the session bus
|
||||
watch_bus: bool = false,
|
||||
_reserved: u30 = 0,
|
||||
_reserved: std.meta.Int(.unsigned, @bitSizeOf(c_uint) - 2) = 0,
|
||||
};
|
||||
|
||||
/// Argv are the arguments to call on the host with argv[0] being
|
||||
|
||||
Reference in New Issue
Block a user