summaryrefslogtreecommitdiffstats
path: root/updater
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-07-09 22:32:28 +0200
committerTao Bao <tbao@google.com>2018-07-10 08:27:50 +0200
commitd8d514fa33a2f2f9504732a19fdba81a6ccccbd7 (patch)
tree1b4ad7625bdb4f4b7a56fe855d8c5199b691dd88 /updater
parentMerge "applypatch: Restrict applypatch_check to eMMC targets." (diff)
downloadandroid_bootable_recovery-d8d514fa33a2f2f9504732a19fdba81a6ccccbd7.tar
android_bootable_recovery-d8d514fa33a2f2f9504732a19fdba81a6ccccbd7.tar.gz
android_bootable_recovery-d8d514fa33a2f2f9504732a19fdba81a6ccccbd7.tar.bz2
android_bootable_recovery-d8d514fa33a2f2f9504732a19fdba81a6ccccbd7.tar.lz
android_bootable_recovery-d8d514fa33a2f2f9504732a19fdba81a6ccccbd7.tar.xz
android_bootable_recovery-d8d514fa33a2f2f9504732a19fdba81a6ccccbd7.tar.zst
android_bootable_recovery-d8d514fa33a2f2f9504732a19fdba81a6ccccbd7.zip
Diffstat (limited to 'updater')
-rw-r--r--updater/updater.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/updater.cpp b/updater/updater.cpp
index 40e3f1fc1..e06d45355 100644
--- a/updater/updater.cpp
+++ b/updater/updater.cpp
@@ -134,7 +134,7 @@ int main(int argc, char** argv) {
std::unique_ptr<Expr> root;
int error_count = 0;
- int error = parse_string(script.c_str(), &root, &error_count);
+ int error = ParseString(script, &root, &error_count);
if (error != 0 || error_count > 0) {
LOG(ERROR) << error_count << " parse errors";
CloseArchive(za);