summaryrefslogtreecommitdiffstats
path: root/edify/expr.c
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2013-07-09 21:29:45 +0200
committerDoug Zongker <dougz@android.com>2013-07-09 21:50:24 +0200
commitfafc85b4ad7a5679c6b562bed64460732e05fd1e (patch)
tree830eb6f87a91e587eac04fa306206d70260ff6c2 /edify/expr.c
parentam 0ccaccf7: am 044a0b4d: recovery: try to write EMMC partitions more reliably (diff)
downloadandroid_bootable_recovery-fafc85b4ad7a5679c6b562bed64460732e05fd1e.tar
android_bootable_recovery-fafc85b4ad7a5679c6b562bed64460732e05fd1e.tar.gz
android_bootable_recovery-fafc85b4ad7a5679c6b562bed64460732e05fd1e.tar.bz2
android_bootable_recovery-fafc85b4ad7a5679c6b562bed64460732e05fd1e.tar.lz
android_bootable_recovery-fafc85b4ad7a5679c6b562bed64460732e05fd1e.tar.xz
android_bootable_recovery-fafc85b4ad7a5679c6b562bed64460732e05fd1e.tar.zst
android_bootable_recovery-fafc85b4ad7a5679c6b562bed64460732e05fd1e.zip
Diffstat (limited to 'edify/expr.c')
-rw-r--r--edify/expr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/edify/expr.c b/edify/expr.c
index 07a8ceb6a..a2f1f99d7 100644
--- a/edify/expr.c
+++ b/edify/expr.c
@@ -287,13 +287,13 @@ Value* LessThanIntFn(const char* name, State* state, int argc, Expr* argv[]) {
long l_int = strtol(left, &end, 10);
if (left[0] == '\0' || *end != '\0') {
- fprintf(stderr, "[%s] is not an int\n", left);
+ printf("[%s] is not an int\n", left);
goto done;
}
long r_int = strtol(right, &end, 10);
if (right[0] == '\0' || *end != '\0') {
- fprintf(stderr, "[%s] is not an int\n", right);
+ printf("[%s] is not an int\n", right);
goto done;
}