From: Pádraig Brady Date: Mon, 30 Jun 2025 12:10:15 +0000 (+0100) Subject: maint: avoid sc_prohibit-quotearg failure X-Git-Tag: v9.8~259 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9075b2b8d2232e58d3b1aee97119d5676471a5f6;p=thirdparty%2Fcoreutils.git maint: avoid sc_prohibit-quotearg failure * src/od.c (parse_old_offset): s/quotearg_colon/quotef/. --- diff --git a/src/od.c b/src/od.c index 918d56725a..700470b853 100644 --- a/src/od.c +++ b/src/od.c @@ -1450,7 +1450,7 @@ parse_old_offset (char *str, intmax_t *offset) } if (s_err == LONGINT_OVERFLOW) - error (EXIT_FAILURE, ERANGE, "%s", quotearg_colon (str)); + error (EXIT_FAILURE, ERANGE, "%s", quotef (str)); return s_err == LONGINT_OK; }