1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Index: clearscreen/src/lib.rs
===================================================================
--- clearscreen.orig/src/lib.rs
+++ clearscreen/src/lib.rs
@@ -758,1 +758,1 @@ mod unix {
- if isatty(stdin().as_raw_fd()).map_err(NixError)? {
+ if isatty(stdin()).map_err(NixError)? {
Index: clearscreen/Cargo.toml
===================================================================
--- clearscreen.orig/Cargo.toml
+++ clearscreen/Cargo.toml
@@ -47,3 +47,3 @@
[target."cfg(unix)".dependencies.nix]
-version = "0.29.0"
+version = "0.30.0"
features = [
|