From a2f18d950a1a94e22fec78ee2d57f5cd3542551a Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 18 Dec 2020 04:12:51 +0100 Subject: help text tweaks function old new delta packed_usage 33570 33502 -68 Signed-off-by: Denys Vlasenko --- util-linux/ionice.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'util-linux/ionice.c') diff --git a/util-linux/ionice.c b/util-linux/ionice.c index 40c04d5e0..c8fb1a777 100644 --- a/util-linux/ionice.c +++ b/util-linux/ionice.c @@ -18,11 +18,11 @@ //kbuild:lib-$(CONFIG_IONICE) += ionice.o //usage:#define ionice_trivial_usage -//usage: "[-c 1-3] [-n 0-7] [-p PID] [PROG]" +//usage: "[-c 1-3] [-n 0-7] [-p PID] [PROG ARGS]" //usage:#define ionice_full_usage "\n\n" //usage: "Change I/O priority and class\n" -//usage: "\n -c Class. 1:realtime 2:best-effort 3:idle" -//usage: "\n -n Priority" +//usage: "\n -c N Class. 1:realtime 2:best-effort 3:idle" +//usage: "\n -n N Priority" #include #include @@ -61,7 +61,7 @@ int ionice_main(int argc UNUSED_PARAM, char **argv) /* Defaults */ int ioclass = 0; int pri = 0; - int pid = 0; /* affect own porcess */ + int pid = 0; /* affect own process */ int opt; enum { OPT_n = 1, -- cgit v1.2.3