Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/coda/coda_vnops.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/coda/coda_vnops.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.41 retrieving revision 1.42 diff -u -p -r1.41 -r1.42 --- src/sys/coda/coda_vnops.c 2005/05/29 21:05:25 1.41 +++ src/sys/coda/coda_vnops.c 2005/08/19 02:03:57 1.42 @@ -6,7 +6,7 @@ mkdir rmdir symlink */ -/* $NetBSD: coda_vnops.c,v 1.41 2005/05/29 21:05:25 christos Exp $ */ +/* $NetBSD: coda_vnops.c,v 1.42 2005/08/19 02:03:57 christos Exp $ */ /* * @@ -54,7 +54,7 @@ symlink */ #include -__KERNEL_RCSID(0, "$NetBSD: coda_vnops.c,v 1.41 2005/05/29 21:05:25 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: coda_vnops.c,v 1.42 2005/08/19 02:03:57 christos Exp $"); #include #include @@ -256,8 +256,8 @@ coda_open(v) if (error) return (error); if (!error) { - CODADEBUG( CODA_OPEN,myprintf(("open: dev %d inode %d result %d\n", - dev, inode, error)); ) + CODADEBUG( CODA_OPEN,myprintf(("open: dev %d inode %llu result %d\n", + dev, (unsigned long long)inode, error)); ) } /* Translate the pair for the cache file into @@ -1878,8 +1878,8 @@ coda_grab_vnode(dev_t dev, ino_t ino, st /* XXX - ensure that nonzero-return means failure */ error = VFS_VGET(mp,ino,vpp); if (error) { - myprintf(("coda_grab_vnode: iget/vget(%d, %d) returns %p, err %d\n", - dev, ino, *vpp, error)); + myprintf(("coda_grab_vnode: iget/vget(%d, %llu) returns %p, err %d\n", + dev, (unsigned long long)ino, *vpp, error)); return(ENOENT); } return(0);