aboutsummaryrefslogtreecommitdiffstats
path: root/mmcutils
diff options
context:
space:
mode:
authorKoushik Dutta <koushd@gmail.com>2011-06-27 11:30:31 -0700
committerKoushik Dutta <koushd@gmail.com>2011-06-27 11:30:31 -0700
commit9e0869367084267855341758e23b4bf92907f5c3 (patch)
tree99c65406ee30d025c8b4d034eff1a59b08778496 /mmcutils
parent7305f7d956b08613659dcfb162ea60b495372556 (diff)
downloadbootable_recovery-9e0869367084267855341758e23b4bf92907f5c3.zip
bootable_recovery-9e0869367084267855341758e23b4bf92907f5c3.tar.gz
bootable_recovery-9e0869367084267855341758e23b4bf92907f5c3.tar.bz2
reversed logic
Change-Id: Ie29418d7e3d82345f82888ade3eabdf6af5865f6
Diffstat (limited to 'mmcutils')
-rw-r--r--mmcutils/mmcutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mmcutils/mmcutils.c b/mmcutils/mmcutils.c
index dbd2246..b1238ee 100644
--- a/mmcutils/mmcutils.c
+++ b/mmcutils/mmcutils.c
@@ -340,7 +340,7 @@ run_exec_process ( char **argv) {
int
format_ext3_device (const char *device) {
-#ifdef BOARD_HAS_SMALL_RECOVERY
+#ifndef BOARD_HAS_SMALL_RECOVERY
char *const mke2fs[] = {MKE2FS_BIN, "-j", "-q", device, NULL};
char *const tune2fs[] = {TUNE2FS_BIN, "-C", "1", device, NULL};
#else