svn commit: r185554 - head/sys/sys

Peter Wemm peter at FreeBSD.org
Tue Dec 2 02:39:47 PST 2008


Author: peter
Date: Tue Dec  2 10:39:47 2008
New Revision: 185554
URL: http://svn.freebsd.org/changeset/base/185554

Log:
  kf_offset was supposed to be signed.

Modified:
  head/sys/sys/user.h

Modified: head/sys/sys/user.h
==============================================================================
--- head/sys/sys/user.h	Tue Dec  2 10:10:50 2008	(r185553)
+++ head/sys/sys/user.h	Tue Dec  2 10:39:47 2008	(r185554)
@@ -316,7 +316,7 @@ struct kinfo_file {
 	int	kf_ref_count;			/* Reference count. */
 	int	kf_flags;			/* Flags. */
 	int	_kf_pad0;			/* Round to 64 bit alignment */
-	uint64_t kf_offset;			/* Seek location. */
+	int64_t	kf_offset;			/* Seek location. */
 	int	kf_vnode_type;			/* Vnode type. */
 	int	kf_sock_domain;			/* Socket domain. */
 	int	kf_sock_type;			/* Socket type. */


More information about the svn-src-head mailing list