summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--paxlib/error.c2
1 files changed, 1 insertions, 1 deletions
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));