summaryrefslogtreecommitdiffstats
path: root/edify/expr.c
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2014-02-18 18:48:19 +0100
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-02-18 18:48:19 +0100
commitf2ff0a2097cd945a612fb461741b803d2b5aca7a (patch)
tree7bc57a86cbf178d77f4790f76fa2e59d69defa7a /edify/expr.c
parentMerge "Fix a crash when going into recovery mode." (diff)
parentclean up some warnings when building recovery (diff)
downloadandroid_bootable_recovery-f2ff0a2097cd945a612fb461741b803d2b5aca7a.tar
android_bootable_recovery-f2ff0a2097cd945a612fb461741b803d2b5aca7a.tar.gz
android_bootable_recovery-f2ff0a2097cd945a612fb461741b803d2b5aca7a.tar.bz2
android_bootable_recovery-f2ff0a2097cd945a612fb461741b803d2b5aca7a.tar.lz
android_bootable_recovery-f2ff0a2097cd945a612fb461741b803d2b5aca7a.tar.xz
android_bootable_recovery-f2ff0a2097cd945a612fb461741b803d2b5aca7a.tar.zst
android_bootable_recovery-f2ff0a2097cd945a612fb461741b803d2b5aca7a.zip
Diffstat (limited to 'edify/expr.c')
-rw-r--r--edify/expr.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/edify/expr.c b/edify/expr.c
index a2f1f99d7..79f6282d8 100644
--- a/edify/expr.c
+++ b/edify/expr.c
@@ -287,13 +287,11 @@ Value* LessThanIntFn(const char* name, State* state, int argc, Expr* argv[]) {
long l_int = strtol(left, &end, 10);
if (left[0] == '\0' || *end != '\0') {
- printf("[%s] is not an int\n", left);
goto done;
}
long r_int = strtol(right, &end, 10);
if (right[0] == '\0' || *end != '\0') {
- printf("[%s] is not an int\n", right);
goto done;
}