And remove type casting. Signed-off-by: Sami Kerola <kerolasa@xxxxxx> --- sys-utils/flock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-utils/flock.c b/sys-utils/flock.c index f160eac..810a061 100644 --- a/sys-utils/flock.c +++ b/sys-utils/flock.c @@ -218,7 +218,7 @@ int main(int argc, char *argv[]) } else if (optind < argc) { /* Use provided file descriptor */ - fd = (int)strtol_or_err(argv[optind], "bad number"); + fd = strtos32_or_err(argv[optind], _("bad file descriptor")); } else { /* Bad options */ errx(EX_USAGE, _("requires file descriptor, file or directory")); -- 2.1.1 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html