flashcp: remove unused variable opts
Signed-off-by: Manuel Zerpies <manuel.f.zerpies@ww.stud.uni-erlangen.de> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
committed by
Denys Vlasenko
parent
b2320370be
commit
d109798882
@ -50,7 +50,6 @@ int flashcp_main(int argc UNUSED_PARAM, char **argv)
|
|||||||
int fd_f, fd_d; /* input file and mtd device file descriptors */
|
int fd_f, fd_d; /* input file and mtd device file descriptors */
|
||||||
int i;
|
int i;
|
||||||
uoff_t erase_count;
|
uoff_t erase_count;
|
||||||
unsigned opts;
|
|
||||||
struct mtd_info_user mtd;
|
struct mtd_info_user mtd;
|
||||||
struct erase_info_user e;
|
struct erase_info_user e;
|
||||||
struct stat statb;
|
struct stat statb;
|
||||||
@ -59,7 +58,7 @@ int flashcp_main(int argc UNUSED_PARAM, char **argv)
|
|||||||
RESERVE_CONFIG_UBUFFER(buf2, BUFSIZE);
|
RESERVE_CONFIG_UBUFFER(buf2, BUFSIZE);
|
||||||
|
|
||||||
opt_complementary = "=2"; /* exactly 2 non-option args: file, dev */
|
opt_complementary = "=2"; /* exactly 2 non-option args: file, dev */
|
||||||
opts = getopt32(argv, "v");
|
/*opts =*/ getopt32(argv, "v");
|
||||||
argv += optind;
|
argv += optind;
|
||||||
// filename = *argv++;
|
// filename = *argv++;
|
||||||
// devicename = *argv;
|
// devicename = *argv;
|
||||||
|
Reference in New Issue
Block a user