From 7c3b94cfeadeabbdded0dc252ef6825c9c63decf Mon Sep 17 00:00:00 2001 From: Konstantin Belousov Date: Sat, 5 Jan 2013 21:52:38 +0000 Subject: [PATCH] Use tabs for indentation. MFC after: 2 weeks --- sbin/geom/class/journal/geom_journal_ufs.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sbin/geom/class/journal/geom_journal_ufs.c b/sbin/geom/class/journal/geom_journal_ufs.c index 0497beb8f865..07d1922df81a 100644 --- a/sbin/geom/class/journal/geom_journal_ufs.c +++ b/sbin/geom/class/journal/geom_journal_ufs.c @@ -70,9 +70,9 @@ g_journal_ufs_using_last_sector(const char *prov) fs = read_superblock(prov); if (fs == NULL) return (0); - /* Provider size in 512 bytes blocks. */ - psize = g_get_mediasize(prov) / DEV_BSIZE; - /* File system size in 512 bytes blocks. */ - fssize = fsbtodb(fs, fs->fs_size); - return (psize <= fssize); + /* Provider size in 512 bytes blocks. */ + psize = g_get_mediasize(prov) / DEV_BSIZE; + /* File system size in 512 bytes blocks. */ + fssize = fsbtodb(fs, fs->fs_size); + return (psize <= fssize); }