From 7332cb8d3bd950d0a194924c1d866b3f7f03a546 Mon Sep 17 00:00:00 2001 From: peter Date: Tue, 2 Dec 2008 10:39:47 +0000 Subject: [PATCH] kf_offset was supposed to be signed. --- sys/sys/user.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/user.h b/sys/sys/user.h index 93a78d36f7e2..f11194447a9a 100644 --- a/sys/sys/user.h +++ b/sys/sys/user.h @@ -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. */