diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-02-24 16:47:03 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-02-24 16:47:03 +0000 |
commit | e261bba6a5874bdaff92eef3df759e5ec026f7e0 (patch) | |
tree | b518017e07c7be8add474c997b60b5e1e3d0b9aa | |
parent | 30e3df38174a98d424b90c7d594fac455e99651d (diff) | |
download | busybox-w32-e261bba6a5874bdaff92eef3df759e5ec026f7e0.tar.gz busybox-w32-e261bba6a5874bdaff92eef3df759e5ec026f7e0.tar.bz2 busybox-w32-e261bba6a5874bdaff92eef3df759e5ec026f7e0.zip |
flash_eraseall.c: fix vda's breakage
-rw-r--r-- | miscutils/flash_eraseall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/flash_eraseall.c b/miscutils/flash_eraseall.c index 0411c5a88..3e0c06ffd 100644 --- a/miscutils/flash_eraseall.c +++ b/miscutils/flash_eraseall.c | |||
@@ -142,7 +142,7 @@ int flash_eraseall_main(int argc UNUSED_PARAM, char **argv) | |||
142 | * types e.g. NOR | 142 | * types e.g. NOR |
143 | */ | 143 | */ |
144 | if (errno == EOPNOTSUPP) { | 144 | if (errno == EOPNOTSUPP) { |
145 | flags = ~BBTEST; | 145 | flags &= ~BBTEST; |
146 | if (flags & IS_NAND) | 146 | if (flags & IS_NAND) |
147 | bb_error_msg_and_die("bad block check not available"); | 147 | bb_error_msg_and_die("bad block check not available"); |
148 | } else { | 148 | } else { |