aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pstat/pstat.c
diff options
context:
space:
mode:
authorMatthew Dillon <dillon@FreeBSD.org>2003-01-12 01:37:13 +0000
committerMatthew Dillon <dillon@FreeBSD.org>2003-01-12 01:37:13 +0000
commitcd72f2180bfff020d03180e6eba1c3a0e0125468 (patch)
tree19da0d56c468b8e0f6d0361d7d39157f561aa69f /usr.sbin/pstat/pstat.c
parent1bd6f83d4d49a87f27dbfe50f9717a182e9f1f47 (diff)
downloadsrc-cd72f2180bfff020d03180e6eba1c3a0e0125468.tar.gz
src-cd72f2180bfff020d03180e6eba1c3a0e0125468.zip
Change struct file f_data to un_data, a union of the correct struct
pointer types, and remove a huge number of casts from code using it. Change struct xfile xf_data to xun_data (ABI is still compatible). If we need to add a #define for f_data and xf_data we can, but I don't think it will be necessary. There are no operational changes in this commit.
Notes
Notes: svn path=/head/; revision=109123
Diffstat (limited to 'usr.sbin/pstat/pstat.c')
-rw-r--r--usr.sbin/pstat/pstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/pstat/pstat.c b/usr.sbin/pstat/pstat.c
index 2346bc42e2a6..989145f996d0 100644
--- a/usr.sbin/pstat/pstat.c
+++ b/usr.sbin/pstat/pstat.c
@@ -418,7 +418,7 @@ filemode(void)
*fbp = '\0';
(void)printf("%6s %3d", flagbuf, fp->xf_count);
(void)printf(" %3d", fp->xf_msgcount);
- (void)printf(" %8lx", (u_long)(void *)fp->xf_data);
+ (void)printf(" %8lx", (u_long)fp->xun_data.generic);
(void)printf(" %jx\n", (uintmax_t)fp->xf_offset);
}
free(buf);