Diff for /src/sys/vfs/gnu/ext2fs/ext2_balloc.c between versions 1.5 and 1.6

version 1.5, 2003/08/07 21:17:41 version 1.6, 2004/04/08 20:57:52
Line 63 Line 63
  * the inode and the logical block number in a file.   * the inode and the logical block number in a file.
  */   */
 int  int
 ext2_balloc(ip, bn, size, cred, bpp, flags)  ext2_balloc(struct inode *ip, daddr_t bn, int size, struct ucred *cred,
         struct inode *ip;              struct buf **bpp, int flags)
         daddr_t bn;  
         int size;  
         struct ucred *cred;  
         struct buf **bpp;  
         int flags;  
 {  {
         struct ext2_sb_info *fs;          struct ext2_sb_info *fs;
         daddr_t nb;          daddr_t nb;

Removed from v.1.5  
changed lines
  Added in v.1.6