In fsdb, call sblock_init() which is now necessary to initialise
the global variable dev_bsize. Add a prototype for sblock_init() to fsck.h, and set the return type correctly.
This commit is contained in:
parent
d51352c9b1
commit
d164d805c7
@ -315,6 +315,7 @@ void pwarn __P((const char *fmt, ...));
|
||||
int readsb __P((int listerr));
|
||||
int reply __P((char *question));
|
||||
void rwerror __P((char *mesg, ufs_daddr_t blk));
|
||||
void sblock_init __P((void));
|
||||
void setinodebuf __P((ino_t));
|
||||
int setup __P((char *dev));
|
||||
void voidquit __P((int));
|
||||
|
@ -475,6 +475,7 @@ badsb(listerr, s)
|
||||
pfatal("BAD SUPER BLOCK: %s\n", s);
|
||||
}
|
||||
|
||||
void
|
||||
sblock_init()
|
||||
{
|
||||
struct disklabel *lp;
|
||||
|
@ -100,6 +100,7 @@ main(argc, argv)
|
||||
else
|
||||
fsys = argv[0];
|
||||
|
||||
sblock_init();
|
||||
if (!setup(fsys))
|
||||
errx(1, "cannot set up file system `%s'", fsys);
|
||||
printf("%s file system `%s'\nLast Mounted on %s\n",
|
||||
|
Loading…
x
Reference in New Issue
Block a user