diff options
author | Manuel Zerpies <manuel.f.zerpies@ww.stud.uni-erlangen.de> | 2012-09-27 16:06:34 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2012-09-27 16:06:34 +0200 |
commit | d1097988825aeec1706d86cc4941d6812735f868 (patch) | |
tree | 43b156231e391a8f924d9199b1ab7332d5a8e82c | |
parent | b2320370be14811459718b9fe418efed75ea3615 (diff) | |
download | busybox-w32-d1097988825aeec1706d86cc4941d6812735f868.tar.gz busybox-w32-d1097988825aeec1706d86cc4941d6812735f868.tar.bz2 busybox-w32-d1097988825aeec1706d86cc4941d6812735f868.zip |
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>
-rw-r--r-- | miscutils/flashcp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/miscutils/flashcp.c b/miscutils/flashcp.c index 790f9c01f..81cde9072 100644 --- a/miscutils/flashcp.c +++ b/miscutils/flashcp.c | |||
@@ -50,7 +50,6 @@ int flashcp_main(int argc UNUSED_PARAM, char **argv) | |||
50 | int fd_f, fd_d; /* input file and mtd device file descriptors */ | 50 | int fd_f, fd_d; /* input file and mtd device file descriptors */ |
51 | int i; | 51 | int i; |
52 | uoff_t erase_count; | 52 | uoff_t erase_count; |
53 | unsigned opts; | ||
54 | struct mtd_info_user mtd; | 53 | struct mtd_info_user mtd; |
55 | struct erase_info_user e; | 54 | struct erase_info_user e; |
56 | struct stat statb; | 55 | struct stat statb; |
@@ -59,7 +58,7 @@ int flashcp_main(int argc UNUSED_PARAM, char **argv) | |||
59 | RESERVE_CONFIG_UBUFFER(buf2, BUFSIZE); | 58 | RESERVE_CONFIG_UBUFFER(buf2, BUFSIZE); |
60 | 59 | ||
61 | opt_complementary = "=2"; /* exactly 2 non-option args: file, dev */ | 60 | opt_complementary = "=2"; /* exactly 2 non-option args: file, dev */ |
62 | opts = getopt32(argv, "v"); | 61 | /*opts =*/ getopt32(argv, "v"); |
63 | argv += optind; | 62 | argv += optind; |
64 | // filename = *argv++; | 63 | // filename = *argv++; |
65 | // devicename = *argv; | 64 | // devicename = *argv; |