From: Karel Zak Date: Wed, 22 Apr 2020 08:32:49 +0000 (+0200) Subject: eject: fix compiler warning [-Wformat-overflow] X-Git-Tag: v2.36-rc1~136 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7c16238c069f171f376731c93435655be6df916b;p=thirdparty%2Futil-linux.git eject: fix compiler warning [-Wformat-overflow] Signed-off-by: Karel Zak --- diff --git a/sys-utils/eject.c b/sys-utils/eject.c index f1087f3e80..1187476977 100644 --- a/sys-utils/eject.c +++ b/sys-utils/eject.c @@ -887,7 +887,7 @@ int main(int argc, char **argv) } if (!ctl.device) - errx(EXIT_FAILURE, _("%s: unable to find device"), ctl.device); + errx(EXIT_FAILURE, _("unable to find device")); verbose(&ctl, _("device name is `%s'"), ctl.device);