diff options
author | joerg <joerg@FreeBSD.org> | 2002-01-26 15:47:24 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 2002-01-26 15:47:24 +0000 |
commit | 23425be38a1383ce13778af372cb09020309d7ee (patch) | |
tree | 1fef2621cd8d336d26907113a9c154c97f1ea3c3 /sbin/fsdb/fsdb.c | |
parent | 937876516bed63d8313631357d0379aec29aa85f (diff) | |
download | FreeBSD-src-23425be38a1383ce13778af372cb09020309d7ee.zip FreeBSD-src-23425be38a1383ce13778af372cb09020309d7ee.tar.gz |
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
Diffstat (limited to 'sbin/fsdb/fsdb.c')
-rw-r--r-- | sbin/fsdb/fsdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/fsdb/fsdb.c b/sbin/fsdb/fsdb.c index 9ba91aa..85e34f6 100644 --- a/sbin/fsdb/fsdb.c +++ b/sbin/fsdb/fsdb.c @@ -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. |