GCC complains about assignments between (unsigned long long *)
and (__u64 *) pointers. Just add a cast to shut it up.
Signed-off-by: Dave Chinner <david@fromorbit.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
{
xfs_fsop_bulkreq_t bulkreq;
- bulkreq.lastip = lastip;
+ bulkreq.lastip = (__u64 *)lastip;
bulkreq.icount = 1;
bulkreq.ubuffer = ubuffer;
bulkreq.ocount = NULL;
{
xfs_fsop_bulkreq_t bulkreq;
- bulkreq.lastip = lastip;
+ bulkreq.lastip = (__u64 *)lastip;
bulkreq.icount = icount;
bulkreq.ubuffer = ubuffer;
bulkreq.ocount = ocount;