diff options
author | bde <bde@FreeBSD.org> | 2002-10-03 17:19:36 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2002-10-03 17:19:36 +0000 |
commit | 84d13cfde442f981f1c7b8a8a95f8afa4e8e951e (patch) | |
tree | 355365b1dea5baa1e88a0553e4b846153644812c /bin | |
parent | e9daa69b52f4cb3e082a5644df2b8894695fac60 (diff) | |
download | FreeBSD-src-84d13cfde442f981f1c7b8a8a95f8afa4e8e951e.zip FreeBSD-src-84d13cfde442f981f1c7b8a8a95f8afa4e8e951e.tar.gz |
Oops, the previous version was a last minute test version with off_t
replaced by int instead of size_t.
Spotted by: fanf
Diffstat (limited to 'bin')
-rw-r--r-- | bin/ps/ps.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ps/ps.h b/bin/ps/ps.h index b33c072..917c025 100644 --- a/bin/ps/ps.h +++ b/bin/ps/ps.h @@ -69,7 +69,7 @@ typedef struct var { * to the generic output routine pvar (which prints simple elements * from the well known kinfo_proc structure). */ - int off; /* offset in structure */ + size_t off; /* offset in structure */ enum type type; /* type of element */ const char *fmt; /* printf format */ short dwidth; /* dynamic printing width */ |