fdformat: fix uninitialized variable

Spotted by EKOPath compiler.

Signed-off-by: Francesco Cosoleto <cosoleto@gmail.com>
This commit is contained in:
Francesco Cosoleto 2011-09-10 19:06:09 +02:00 committed by Karel Zak
parent 2511b248fa
commit 8c40f48195
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ int main(int argc, char **argv)
{ {
int ch; int ch;
int ctrl; int ctrl;
int verify; int verify = 1;
struct stat st; struct stat st;
static const struct option longopts[] = { static const struct option longopts[] = {