Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 2 Dec 2008 10:39:47 +0000 (UTC)
From:      Peter Wemm <peter@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r185554 - head/sys/sys
Message-ID:  <200812021039.mB2AdlAt056450@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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. */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200812021039.mB2AdlAt056450>