diff options
author | Doug Zongker <dougz@android.com> | 2014-02-14 00:07:56 +0100 |
---|---|---|
committer | Doug Zongker <dougz@android.com> | 2014-02-14 00:34:18 +0100 |
commit | 0d32f259cddeaf46917bdc4af3514114c206dd76 (patch) | |
tree | 6d6a6f6793cd8a335dbc6f3d6ed21598748378dd /edify/expr.c | |
parent | remove 'retouch' ASLR support (diff) | |
download | android_bootable_recovery-0d32f259cddeaf46917bdc4af3514114c206dd76.tar android_bootable_recovery-0d32f259cddeaf46917bdc4af3514114c206dd76.tar.gz android_bootable_recovery-0d32f259cddeaf46917bdc4af3514114c206dd76.tar.bz2 android_bootable_recovery-0d32f259cddeaf46917bdc4af3514114c206dd76.tar.lz android_bootable_recovery-0d32f259cddeaf46917bdc4af3514114c206dd76.tar.xz android_bootable_recovery-0d32f259cddeaf46917bdc4af3514114c206dd76.tar.zst android_bootable_recovery-0d32f259cddeaf46917bdc4af3514114c206dd76.zip |
Diffstat (limited to 'edify/expr.c')
-rw-r--r-- | edify/expr.c | 2 |
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; } |