summaryrefslogtreecommitdiff
path: root/sutils/fsck.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1999-05-23 18:37:34 +0000
committerRoland McGrath <roland@gnu.org>1999-05-23 18:37:34 +0000
commitde35ce31f48405cba3f11f45773fa0565063ebfd (patch)
tree0b53a36c8af8583da7cc1f8889d9b60b8e80f621 /sutils/fsck.c
parente6438ce8ee7f5ae24fbe36a2add7531cf09829d2 (diff)
1999-05-23 Roland McGrath <roland@baalperazim.frob.com>
* fsck.c (struct fsck): Don't use bitfield.
Diffstat (limited to 'sutils/fsck.c')
-rw-r--r--sutils/fsck.c6
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;
};