[PATCH v2 1/3] xfs_repair: reformat lines to fit within 80 characters
Christoph Hellwig
hch at infradead.org
Sun Jun 21 04:16:06 CDT 2015
On Fri, Jun 19, 2015 at 04:03:59PM +0100, Mike Grant wrote:
> Also introduces a const to improve readability
Wouldn't just using sizeof(*bplist) be easier?
> {
> struct xfs_buf **bplist;
> + const size_t bpsz = sizeof(struct xfs_buf*);
Also if we stay with this version please add a space before the star,
e.g.
const size_t bpsz = sizeof(struct xfs_buf *);
More information about the xfs
mailing list