From 1d9f9f37f8fee7e4d32feb20fde8706619e29f93 Mon Sep 17 00:00:00 2001 From: pfg Date: Sun, 10 Feb 2013 19:49:37 +0000 Subject: ext2fs: Use prototype declarations for function definitions Submitted by: Christoph Mallon MFC after: 2 weeks --- sys/fs/ext2fs/ext2_balloc.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'sys/fs/ext2fs/ext2_balloc.c') diff --git a/sys/fs/ext2fs/ext2_balloc.c b/sys/fs/ext2fs/ext2_balloc.c index 1861f69..1c0cc0e 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; -- cgit v1.1