aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrick J. Wong <darrick.wong@oracle.com>2017-01-09 20:16:33 -0600
committerEric Sandeen <sandeen@redhat.com>2017-01-09 20:16:33 -0600
commit187f8c22d165e080e916fde7cbbbfeb920a1e0a2 (patch)
treef2774e2df69ca35bc56906e396583edcef203c61
parentbc199464996b87479ea87db7bc7a03c8ff22663e (diff)
downloadxfsprogs-dev-187f8c22d165e080e916fde7cbbbfeb920a1e0a2.tar.gz
libxfs: fix line lengths
Fix some 80-char line length issues. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reported-by: Eric Sandeen <sandeen@sandeen.net> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
-rw-r--r--libxfs/xfs_ialloc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libxfs/xfs_ialloc.c b/libxfs/xfs_ialloc.c
index f0f243e529..e0a35bedc7 100644
--- a/libxfs/xfs_ialloc.c
+++ b/libxfs/xfs_ialloc.c
@@ -2338,7 +2338,8 @@ xfs_imap(
imap->im_blkno = XFS_AGB_TO_DADDR(mp, agno, agbno);
imap->im_len = XFS_FSB_TO_BB(mp, 1);
- imap->im_boffset = (unsigned short)(offset << mp->m_sb.sb_inodelog);
+ imap->im_boffset = (unsigned short)(offset <<
+ mp->m_sb.sb_inodelog);
return 0;
}