On 5/9/20 12:01 PM, Christoph Hellwig wrote: > Signed-off-by: Christoph Hellwig <hch@xxxxxx> > --- oh that's embarrassing.... Thanks for this and the other fixes, I had meant to go through the differences but tough to keep up with you. ;) -Eric > libxfs/libxfs_priv.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libxfs/libxfs_priv.h b/libxfs/libxfs_priv.h > index 8d717d91..5688284d 100644 > --- a/libxfs/libxfs_priv.h > +++ b/libxfs/libxfs_priv.h > @@ -263,8 +263,8 @@ div_u64_rem(uint64_t dividend, uint32_t divisor, uint32_t *remainder) > */ > static inline uint64_t div_u64(uint64_t dividend, uint32_t divisor) > { > - uint32_t remainder; > - return div_u64_rem(dividend, divisor, &remainder); > + uint32_t remainder; > + return div_u64_rem(dividend, divisor, &remainder); > } > > /** >