usr/gen_init_cpio.c: remove unnecessary -1 values from int file

The file variable is assigned first, it does not need to be initialized.

Link: https://lkml.kernel.org/r/20220919014406.3242-1-zeming@nfschina.com
Signed-off-by: Li zeming <zeming@nfschina.com>
Cc: Li zeming <zeming@nfschina.com>
Cc: Masahiro Yamada <masahiroy@kernel.org>
Cc: Nicolas Schier <nicolas@fjasle.eu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
Li zeming 2022-09-19 09:44:06 +08:00 committed by Andrew Morton
parent 72d1e61108
commit 462cd7724e
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ static int cpio_mkfile(const char *name, const char *location,
char s[256];
struct stat buf;
unsigned long size;
int file = -1;
int file;
int retval;
int rc = -1;
int namesize;