Avoid pointless initialization of global variables to 0. This only

bloats the resulting binary file by forcing them out of .bss into
.data, while the C standard already guarantees them to become
initialized to 0 at program startup.

MFC after:	1 week
This commit is contained in:
Joerg Wunsch 2002-01-26 15:47:24 +00:00
parent 67a2e47022
commit b81ba372c5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=89826

View File

@ -59,8 +59,8 @@ usage()
exit(1);
}
int returntosingle = 0;
char nflag = 0;
int returntosingle;
char nflag;
/*
* We suck in lots of fsck code, and just pick & choose the stuff we want.