svn commit: r245074 - head/sbin/geom/class/journal
Konstantin Belousov
kib at FreeBSD.org
Sat Jan 5 21:52:39 UTC 2013
Author: kib
Date: Sat Jan 5 21:52:38 2013
New Revision: 245074
URL: http://svnweb.freebsd.org/changeset/base/245074
Log:
Use tabs for indentation.
MFC after: 2 weeks
Modified:
head/sbin/geom/class/journal/geom_journal_ufs.c
Modified: head/sbin/geom/class/journal/geom_journal_ufs.c
==============================================================================
--- head/sbin/geom/class/journal/geom_journal_ufs.c Sat Jan 5 21:52:01 2013 (r245073)
+++ head/sbin/geom/class/journal/geom_journal_ufs.c Sat Jan 5 21:52:38 2013 (r245074)
@@ -70,9 +70,9 @@ g_journal_ufs_using_last_sector(const ch
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);
}
More information about the svn-src-head
mailing list