Fix type mismatch in exit code

This commit is contained in:
Richard Feldman 2022-09-19 21:12:48 -04:00
parent 593bd02cb9
commit b6157e76b8
No known key found for this signature in database
GPG key ID: F1F21AA5B1D9E43B
7 changed files with 7 additions and 7 deletions

View file

@ -1,3 +1,3 @@
fn main() {
std::process::exit(host::rust_main());
std::process::exit(host::rust_main() as _);
}