freebsd-dev/sys/dev/xen/blkfront
Dimitry Andric e635220e1a Fix unused variable warning in xen's blkfront.c
With clang 15, the following -Werror warning is produced:

    sys/dev/xen/blkfront/blkfront.c:602:6: error: variable 'sbp' set but not used [-Werror,-Wunused-but-set-variable]
            int sbp;
                ^

The 'sbp' variable was used in the for loop later in the xb_dump()
function, but refactoring in e4808c4b2d got rid of it. Remove the
variable since it no longer serves any purpose.

MFC after:      3 days
2022-07-26 19:59:55 +02:00
..
blkfront.c Fix unused variable warning in xen's blkfront.c 2022-07-26 19:59:55 +02:00
block.h xen(4): Fix two typos in source code comments 2021-11-30 10:39:42 +01:00