diff options
author | jhb <jhb@FreeBSD.org> | 2004-01-15 18:36:48 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2004-01-15 18:36:48 +0000 |
commit | d195426865fc9df3bda4ecbc4bf2cbefdbd6f1a9 (patch) | |
tree | dc3f37f12fae595db8cf2fcb068eb297856aa446 /lib/libstand | |
parent | 4446d36fa6d21ad7e02e09e8bf72dff316f35e7c (diff) | |
download | FreeBSD-src-d195426865fc9df3bda4ecbc4bf2cbefdbd6f1a9.zip FreeBSD-src-d195426865fc9df3bda4ecbc4bf2cbefdbd6f1a9.tar.gz |
Whitespace tweaks to make indentation consistent within this file and even
within a single function.
Diffstat (limited to 'lib/libstand')
-rw-r--r-- | lib/libstand/splitfs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libstand/splitfs.c b/lib/libstand/splitfs.c index 523c638..153f054 100644 --- a/lib/libstand/splitfs.c +++ b/lib/libstand/splitfs.c @@ -64,17 +64,17 @@ struct fs_ops splitfs_fsops = { static void split_file_destroy(struct split_file *sf) { - int i; + int i; - if (sf->filesc > 0) { + if (sf->filesc > 0) { for (i = 0; i < sf->filesc; i++) { free(sf->filesv[i]); free(sf->descsv[i]); } free(sf->filesv); free(sf->descsv); - } - free(sf); + } + free(sf); } static int |