aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/user.h
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2008-12-02 10:39:47 +0000
committerPeter Wemm <peter@FreeBSD.org>2008-12-02 10:39:47 +0000
commita8f4518c3042be236346db9b0bfe72323bd74390 (patch)
tree17a69883cfb5e5c555b3063e94e47a968a469b4d /sys/sys/user.h
parentde94a63bd15027219f5054451f96a81387c19c59 (diff)
downloadsrc-a8f4518c3042be236346db9b0bfe72323bd74390.tar.gz
src-a8f4518c3042be236346db9b0bfe72323bd74390.zip
kf_offset was supposed to be signed.
Notes
Notes: svn path=/head/; revision=185554
Diffstat (limited to 'sys/sys/user.h')
-rw-r--r--sys/sys/user.h2
1 files changed, 1 insertions, 1 deletions
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. */