summaryrefslogtreecommitdiffstats
path: root/updater/updater.c
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2009-06-15 05:49:32 +0200
committerThe Android Open Source Project <initial-contribution@android.com>2009-06-15 05:49:32 +0200
commitcf2b2a2e8fc0361b9db5826c2e5c92d9cb5920d3 (patch)
tree5147d4b4add3e2dc17f5404254e8ef3be80fd23c /updater/updater.c
parentam 9dbc027b: fix sim build in donut, too (diff)
parentedify extensions for OTA package installation, part 2 (diff)
downloadandroid_bootable_recovery-cf2b2a2e8fc0361b9db5826c2e5c92d9cb5920d3.tar
android_bootable_recovery-cf2b2a2e8fc0361b9db5826c2e5c92d9cb5920d3.tar.gz
android_bootable_recovery-cf2b2a2e8fc0361b9db5826c2e5c92d9cb5920d3.tar.bz2
android_bootable_recovery-cf2b2a2e8fc0361b9db5826c2e5c92d9cb5920d3.tar.lz
android_bootable_recovery-cf2b2a2e8fc0361b9db5826c2e5c92d9cb5920d3.tar.xz
android_bootable_recovery-cf2b2a2e8fc0361b9db5826c2e5c92d9cb5920d3.tar.zst
android_bootable_recovery-cf2b2a2e8fc0361b9db5826c2e5c92d9cb5920d3.zip
Diffstat (limited to 'updater/updater.c')
-rw-r--r--updater/updater.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/updater/updater.c b/updater/updater.c
index aa03803a8..09776256b 100644
--- a/updater/updater.c
+++ b/updater/updater.c
@@ -80,10 +80,11 @@ int main(int argc, char** argv) {
// Parse the script.
Expr* root;
+ int error_count = 0;
yy_scan_string(script);
- int error = yyparse(&root);
- if (error != 0) {
- fprintf(stderr, "%d parse errors\n", error);
+ int error = yyparse(&root, &error_count);
+ if (error != 0 || error_count > 0) {
+ fprintf(stderr, "%d parse errors\n", error_count);
return 6;
}