aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>2002-10-03 17:19:36 +0000
committerBruce Evans <bde@FreeBSD.org>2002-10-03 17:19:36 +0000
commitbb2d6f211d98eb285a671d75ccf4ec80afe3018c (patch)
tree355365b1dea5baa1e88a0553e4b846153644812c /bin
parent64316569f51976e8eb7989cb16434e65e1cdf2c1 (diff)
downloadsrc-bb2d6f211d98eb285a671d75ccf4ec80afe3018c.tar.gz
src-bb2d6f211d98eb285a671d75ccf4ec80afe3018c.zip
Oops, the previous version was a last minute test version with off_t
replaced by int instead of size_t. Spotted by: fanf
Notes
Notes: svn path=/head/; revision=104414
Diffstat (limited to 'bin')
-rw-r--r--bin/ps/ps.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ps/ps.h b/bin/ps/ps.h
index b33c0724869b..917c025896fb 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 */