| ... | ... | @@ -5421,7 +5421,7 @@ pub const AUDIT = struct { |
| 5421 | 5421 | const _64BIT = 0x80000000; |
| 5422 | 5422 | const _LE = 0x40000000; |
| 5423 | 5423 | |
| 5424 | | pub const current = switch (native_arch) { |
| 5424 | pub const current: AUDIT.ARCH = switch (native_arch) { |
| 5425 | 5425 | .i386 => .I386, |
| 5426 | 5426 | .x86_64 => .X86_64, |
| 5427 | 5427 | .aarch64 => .AARCH64, |
| ... | ... | @@ -5433,7 +5433,7 @@ pub const AUDIT = struct { |
| 5433 | 5433 | .powerpc => .PPC, |
| 5434 | 5434 | .powerpc64 => .PPC64, |
| 5435 | 5435 | .powerpc64le => .PPC64LE, |
| 5436 | | else => undefined, |
| 5436 | else => @compileError("unsupported architecture"), |
| 5437 | 5437 | }; |
| 5438 | 5438 | |
| 5439 | 5439 | AARCH64 = toAudit(.aarch64), |