diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2022-11-10 21:42:53 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2022-11-10 21:42:53 +0100 |
commit | beb899bb7ee4f4c3d15b555cc71ed4204a6b278a (patch) | |
tree | 494f4d1d8547e2d307f6468e1aaa50fe8b17f991 | |
parent | be47de3883273462103d2cfd573b50c4701bc8ec (diff) | |
download | rv64i-linux-user-no-std-beb899bb7ee4f4c3d15b555cc71ed4204a6b278a.tar.gz rv64i-linux-user-no-std-beb899bb7ee4f4c3d15b555cc71ed4204a6b278a.zip |
fix clippy lints
-rw-r--r-- | build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,5 +57,5 @@ fn main() { // Write out rust file with syscall numbers. let outfile = format!("{}/syscalls.rs", std::env::var("OUT_DIR").unwrap()); - std::fs::write(&outfile, output).unwrap(); + std::fs::write(outfile, output).unwrap(); } |