aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/ext2fs/ext2_balloc.c
diff options
context:
space:
mode:
authorPedro F. Giffuni <pfg@FreeBSD.org>2013-02-10 19:49:37 +0000
committerPedro F. Giffuni <pfg@FreeBSD.org>2013-02-10 19:49:37 +0000
commita9d1b2999545765bd24d17ee614eec4f739d19ba (patch)
treedbdaa0cb9c2f22e74badfb91f1eb9bbc81905096 /sys/fs/ext2fs/ext2_balloc.c
parentf37ba7263208005ad42532cf6f4ef20a50a4a99c (diff)
downloadsrc-a9d1b2999545765bd24d17ee614eec4f739d19ba.tar.gz
src-a9d1b2999545765bd24d17ee614eec4f739d19ba.zip
ext2fs: Use prototype declarations for function definitions
Submitted by: Christoph Mallon MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=246634
Diffstat (limited to 'sys/fs/ext2fs/ext2_balloc.c')
-rw-r--r--sys/fs/ext2fs/ext2_balloc.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/sys/fs/ext2fs/ext2_balloc.c b/sys/fs/ext2fs/ext2_balloc.c
index 1861f692890c..1c0cc0e4bbee 100644
--- a/sys/fs/ext2fs/ext2_balloc.c
+++ b/sys/fs/ext2fs/ext2_balloc.c
@@ -55,13 +55,8 @@
* the inode and the logical block number in a file.
*/
int
-ext2_balloc(ip, lbn, size, cred, bpp, flags)
- struct inode *ip;
- int32_t lbn;
- int size;
- struct ucred *cred;
- struct buf **bpp;
- int flags;
+ext2_balloc(struct inode *ip, int32_t lbn, int size, struct ucred *cred,
+ struct buf **bpp, int flags)
{
struct m_ext2fs *fs;
struct ext2mount *ump;