From 17835011ee0e1610a1c2af5d96a397be50559e89 Mon Sep 17 00:00:00 2001 From: BrainSlayer Date: Mon, 30 Dec 2024 09:03:39 +0000 Subject: [PATCH] fix warning git-svn-id: svn://svn.dd-wrt.com/DD-WRT@58954 52c4871e-980c-0410-b1e0-e73912ce01f8 --- src/router/busybox/libbb/xfuncs_printf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/router/busybox/libbb/xfuncs_printf.c b/src/router/busybox/libbb/xfuncs_printf.c index 894b00196f22..2f90540e9213 100644 --- a/src/router/busybox/libbb/xfuncs_printf.c +++ b/src/router/busybox/libbb/xfuncs_printf.c @@ -278,7 +278,7 @@ off_t FAST_FUNC xlseek(int fd, off_t offset, int whence) { off_t off = lseek(fd, offset, whence); if (off == (off_t)-1) { - bb_perror_msg_and_die("lseek(%lu, %d)", offset, whence); + bb_perror_msg_and_die("lseek(%jd, %d)", offset, whence); } return off; }