Re: [PATCH v5 12/13] error: Use format code llu for 64-bit uint bp->blk_prop in grub_error

2021-03-04 Thread Glenn Washburn
On Thu, 4 Mar 2021 18:59:53 +0100 Daniel Kiper wrote: > On Wed, Mar 03, 2021 at 07:29:17PM -0600, Glenn Washburn wrote: > > For some reason PRIuGRUB_UINT64_T is not expanding to llu, but to > > lu, which causes the format string check to fail. Use literal and > > force cast until this is

Re: [PATCH v5 12/13] error: Use format code llu for 64-bit uint bp->blk_prop in grub_error

2021-03-04 Thread Daniel Kiper
On Wed, Mar 03, 2021 at 07:29:17PM -0600, Glenn Washburn wrote: > For some reason PRIuGRUB_UINT64_T is not expanding to llu, but to lu, which > causes the format string check to fail. Use literal and force cast until > this is debugged. We know the problem and how to fix it at this point. Though

[PATCH v5 12/13] error: Use format code llu for 64-bit uint bp->blk_prop in grub_error

2021-03-03 Thread Glenn Washburn
For some reason PRIuGRUB_UINT64_T is not expanding to llu, but to lu, which causes the format string check to fail. Use literal and force cast until this is debugged. Signed-off-by: Glenn Washburn --- grub-core/fs/zfs/zfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git