diff options
author | Ryan Zoeller <rtzoeller@rtzoeller.com> | 2022-05-15 23:32:24 -0500 |
---|---|---|
committer | Ryan Zoeller <rtzoeller@rtzoeller.com> | 2022-05-15 23:32:24 -0500 |
commit | 598925c78fcf528c2b97f0510196b4360973ba4c (patch) | |
tree | 5f74f3d1282e80399b89da6a58d8319242b11bf2 | |
parent | 6639c59618ef34031718fb45794562ead572450c (diff) | |
download | nix-598925c78fcf528c2b97f0510196b4360973ba4c.zip |
Fix nightly clippy in tests
-rw-r--r-- | test/sys/test_uio.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sys/test_uio.rs b/test/sys/test_uio.rs index 847381f1..fc2dfabe 100644 --- a/test/sys/test_uio.rs +++ b/test/sys/test_uio.rs @@ -253,7 +253,7 @@ fn test_process_vm_readv() { } let _ = write(w, b"\0"); let _ = close(w); - loop { let _ = pause(); } + loop { pause(); } }, } } |