mirror of
https://github.com/eza-community/eza.git
synced 2025-12-23 05:36:50 +00:00
fix: prefix unused binding name with underscore
This commit is contained in:
parent
9d834fb3ca
commit
c28e5b72d4
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ impl TerminalWidth {
|
|||
terminal_size::terminal_size_using_handle(unsafe {
|
||||
GetStdHandle(STD_OUTPUT_HANDLE) as RawHandle
|
||||
})
|
||||
.map(|(w, h)| w.0 as _)
|
||||
.map(|(w, _h)| w.0 as _)
|
||||
};
|
||||
|
||||
#[rustfmt::skip]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue