Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.dd-wrt.com/DD-WRT@58954 52c4871e-980c-0410-b1e0-e73912ce01f8
  • Loading branch information
BrainSlayer committed Dec 30, 2024
1 parent e944d54 commit 1783501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/router/busybox/libbb/xfuncs_printf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 1783501

Please sign in to comment.