From 2dedbc606b58031b0f8263ebcf6eba1c3dfc5026 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 10 Sep 2022 17:03:44 -0500 Subject: Fix seek_warn_details typo * paxlib/error.c (seek_warn_details): Change int to intmax_t to fix recently-introduced typo. --- paxlib/error.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paxlib/error.c b/paxlib/error.c index f363d84..cfec4f9 100644 --- a/paxlib/error.c +++ b/paxlib/error.c @@ -268,7 +268,7 @@ seek_warn (char const *name) void seek_warn_details (char const *name, off_t offset) { - int off = offset; + intmax_t off = offset; int e = errno; WARN ((0, e, _("%s: Warning: Cannot seek to %jd"), quotearg_colon (name), off)); -- cgit v1.2.1