diff options
author | Roland McGrath <roland@gnu.org> | 1999-05-23 18:37:34 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-05-23 18:37:34 +0000 |
commit | de35ce31f48405cba3f11f45773fa0565063ebfd (patch) | |
tree | 0b53a36c8af8583da7cc1f8889d9b60b8e80f621 /sutils | |
parent | e6438ce8ee7f5ae24fbe36a2add7531cf09829d2 (diff) |
1999-05-23 Roland McGrath <roland@baalperazim.frob.com>
* fsck.c (struct fsck): Don't use bitfield.
Diffstat (limited to 'sutils')
-rw-r--r-- | sutils/fsck.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sutils/fsck.c b/sutils/fsck.c index 31c17a28..28ea5f77 100644 --- a/sutils/fsck.c +++ b/sutils/fsck.c @@ -1,8 +1,8 @@ /* Hurd-aware fsck wrapper - Copyright (C) 1996, 97, 98 Free Software Foundation, Inc. + Copyright (C) 1996, 97, 98, 99 Free Software Foundation, Inc. - Written by Miles Bader <miles@gnu.ai.mit.edu> + Written by Miles Bader <miles@gnu.org> This file is part of the GNU Hurd. @@ -112,7 +112,7 @@ struct fsck { struct fs *fs; /* Filesystem being fscked. */ int pid; /* Pid for process. */ - int make_writable :1; /* Make writable after fscking if possible. */ + int make_writable; /* Make writable after fscking if possible. */ struct fsck *next, **self; }; |