aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2025-11-02 17:38:00 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2025-11-08 07:42:34 +0100
commit8d7ae80eda7e08ee361f8793683ae58216caf720 (patch)
tree517f4682ffc87c0306a4b3435f557ef22018f9ca
parentb8cf048880594bf4d72cc588f0e8d82ad9556f1f (diff)
downloadbusybox-w32-busybox.tar.gz
busybox-w32-busybox.tar.bz2
busybox-w32-busybox.zip
eject: fix missing -s option in trivial usagebusybox
Fixes missing [-s] option in trivial usage section of `eject --help` function old new delta packed_usage 35125 35127 +2 Signed-off-by: Nir Lichtman <nir@lichtman.org> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--util-linux/eject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/eject.c b/util-linux/eject.c
index b9813262b..4fa6dbd94 100644
--- a/util-linux/eject.c
+++ b/util-linux/eject.c
@@ -31,7 +31,7 @@
31//kbuild:lib-$(CONFIG_EJECT) += eject.o 31//kbuild:lib-$(CONFIG_EJECT) += eject.o
32 32
33//usage:#define eject_trivial_usage 33//usage:#define eject_trivial_usage
34//usage: "[-t] [-T] [DEVICE]" 34//usage: IF_FEATURE_EJECT_SCSI("[-s] ") "[-t] [-T] [DEVICE]"
35//usage:#define eject_full_usage "\n\n" 35//usage:#define eject_full_usage "\n\n"
36//usage: "Eject DEVICE or default /dev/cdrom\n" 36//usage: "Eject DEVICE or default /dev/cdrom\n"
37//usage: IF_FEATURE_EJECT_SCSI( 37//usage: IF_FEATURE_EJECT_SCSI(