From dbd425ccf7afb5f1af3c1b480f28fed26aa96df3 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru <sylvestre@debian.org> Date: Tue, 16 Jan 2024 22:31:37 +0100 Subject: [PATCH] fix warnings --- src/uu/renice/src/renice.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uu/renice/src/renice.rs b/src/uu/renice/src/renice.rs index 1a6f0e5..daa151d 100644 --- a/src/uu/renice/src/renice.rs +++ b/src/uu/renice/src/renice.rs @@ -3,9 +3,9 @@ // For the full copyright and license information, please view the LICENSE // file that was distributed with this source code. -use libc::{c_char, c_int, execvp, PRIO_PROCESS}; +use libc::PRIO_PROCESS; use std::env; -use std::io::{Error, Write}; +use std::io::Error; use std::process; use std::str::FromStr;