| author | |
| committer | |
| log | 0b942f5ee23432d01df066e277d152af84d9b9a1 |
| tree | 9a2ac09228ea884a293c4b6917fa6eb2ed27907a |
| parent | 6d0afc2bd233121d6b82f66cc09f74310a6eea4a |
| parent | 5bbde1dc91a0b6b6f4357ad7bf844a57ffe7283e |
Fix unused return value in darwin.zig1 files changed, 1 insertions(+), 1 deletions(-)
std/darwin.zig+1-1| ... | ... | @@ -49,7 +49,7 @@ pub const SIGSYS = 31; |
| 49 | 49 | pub const SIGUNUSED = SIGSYS; |
| 50 | 50 | |
| 51 | 51 | pub fn exit(status: usize) -> unreachable { |
| 52 | arch.syscall1(arch.SYS_exit, status); | |
| 52 | _ = arch.syscall1(arch.SYS_exit, status); | |
| 53 | 53 | @unreachable() |
| 54 | 54 | } |
| 55 | 55 |