diff options
author | Mike Pechkin <mpech@cvs.openbsd.org> | 2002-06-12 06:07:18 +0000 |
---|---|---|
committer | Mike Pechkin <mpech@cvs.openbsd.org> | 2002-06-12 06:07:18 +0000 |
commit | 2c5359ee4336522c89649a8e017da3fdf87fa8bd (patch) | |
tree | 60aa07e4178dd0840349fe830f118d2cb64a1c6c /usr.bin/window/ww.h | |
parent | c22dc40df755f025740d14e001bb8599cf4a72c5 (diff) |
a real pid_t cleanup.
espie@ ok for make/,
deraadt@ one extra eye,
millert@ ok
Diffstat (limited to 'usr.bin/window/ww.h')
-rw-r--r-- | usr.bin/window/ww.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/window/ww.h b/usr.bin/window/ww.h index aed54113c62..fe8c6ef4456 100644 --- a/usr.bin/window/ww.h +++ b/usr.bin/window/ww.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ww.h,v 1.7 2000/04/14 18:43:34 millert Exp $ */ +/* $OpenBSD: ww.h,v 1.8 2002/06/12 06:07:17 mpech Exp $ */ /* $NetBSD: ww.h,v 1.9 1996/10/12 23:46:23 christos Exp $ */ /* @@ -122,7 +122,7 @@ struct ww { #define WWP_STOPPED 0x0200 /* output stopped */ int ww_pty; /* file descriptor of pty or socket pair */ int ww_socket; /* other end of socket pair */ - int ww_pid; /* pid of process, if WWS_HASPROC true */ + pid_t ww_pid; /* pid of process, if WWS_HASPROC true */ char ww_ttyname[11]; /* "/dev/ttyp?" */ char *ww_ob; /* output buffer */ char *ww_obe; /* end of ww_ob */ |