aboutsummaryrefslogtreecommitdiff
path: root/sbin/geom
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2013-01-05 21:52:38 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2013-01-05 21:52:38 +0000
commit7c3b94cfeadeabbdded0dc252ef6825c9c63decf (patch)
tree15e4f07553e46b168241a7b9ff91154ed6d665ed /sbin/geom
parent2dd807c56e2df480337cbf2aad04ac7d7e05eb90 (diff)
downloadsrc-7c3b94cfeadeabbdded0dc252ef6825c9c63decf.tar.gz
src-7c3b94cfeadeabbdded0dc252ef6825c9c63decf.zip
Use tabs for indentation.
MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=245074
Diffstat (limited to 'sbin/geom')
-rw-r--r--sbin/geom/class/journal/geom_journal_ufs.c10
1 files 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);
}