Module Name: src Committed By: jakllsch Date: Sat Nov 17 16:03:48 UTC 2012
Modified Files: src/sys/ufs/ext2fs: ext2fs_extern.h Log Message: Match prototype types to function types (u_int64_t vs. uint64_t). To generate a diff of this commit: cvs rdiff -u -r1.44 -r1.45 src/sys/ufs/ext2fs/ext2fs_extern.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/ufs/ext2fs/ext2fs_extern.h diff -u src/sys/ufs/ext2fs/ext2fs_extern.h:1.44 src/sys/ufs/ext2fs/ext2fs_extern.h:1.45 --- src/sys/ufs/ext2fs/ext2fs_extern.h:1.44 Wed May 9 00:21:18 2012 +++ src/sys/ufs/ext2fs/ext2fs_extern.h Sat Nov 17 16:03:48 2012 @@ -1,4 +1,4 @@ -/* $NetBSD: ext2fs_extern.h,v 1.44 2012/05/09 00:21:18 riastradh Exp $ */ +/* $NetBSD: ext2fs_extern.h,v 1.45 2012/11/17 16:03:48 jakllsch Exp $ */ /*- * Copyright (c) 1991, 1993, 1994 @@ -108,8 +108,8 @@ int ext2fs_gop_alloc(struct vnode *, off int ext2fs_bmap(void *); /* ext2fs_inode.c */ -u_int64_t ext2fs_size(struct inode *); -int ext2fs_setsize(struct inode *, u_int64_t); +uint64_t ext2fs_size(struct inode *); +int ext2fs_setsize(struct inode *, uint64_t); int ext2fs_update(struct vnode *, const struct timespec *, const struct timespec *, int); int ext2fs_truncate(struct vnode *, off_t, int, kauth_cred_t);