diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-01-11 20:59:30 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-01-11 20:59:30 +0000 |
commit | cc214a33583569c0cb0e9534cd4601060e1037d2 (patch) | |
tree | 0995dc0e205bd36b39589c9ca1c8591333226d24 /sbin/fsck/preen.c | |
parent | f91c63e6bc4e3f6510732ef26f1308496ede5a12 (diff) |
pids should be pid_t
Diffstat (limited to 'sbin/fsck/preen.c')
-rw-r--r-- | sbin/fsck/preen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/fsck/preen.c b/sbin/fsck/preen.c index e247acaf78f..dfdaec2f72c 100644 --- a/sbin/fsck/preen.c +++ b/sbin/fsck/preen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: preen.c,v 1.4 1997/09/14 10:37:42 deraadt Exp $ */ +/* $OpenBSD: preen.c,v 1.5 1999/01/11 20:59:29 niklas Exp $ */ /* $NetBSD: preen.c,v 1.15 1996/09/28 19:21:42 christos Exp $ */ /* @@ -71,7 +71,7 @@ struct diskentry { TAILQ_ENTRY(diskentry) d_entries; char *d_name; /* disk base name */ TAILQ_HEAD(prt, partentry) d_part; /* list of partitions on disk */ - int d_pid; /* 0 or pid of fsck proc */ + pid_t d_pid; /* 0 or pid of fsck proc */ }; TAILQ_HEAD(disk, diskentry) diskh; |