summaryrefslogtreecommitdiffstats
path: root/updater
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-07-10 18:52:45 +0200
committerandroid-build-merger <android-build-merger@google.com>2018-07-10 18:52:45 +0200
commit17cda674f34ff7cb4fae2c65fcc7c8e99e3d86d3 (patch)
treee69d95fe4e282125295a9103f7c82517273c7728 /updater
parentMerge "edify: Remove VAL_INVALID and move ValueType into Value class." (diff)
parentMerge "edify: Rename parse_string to ParseString and let it take std::string." (diff)
downloadandroid_bootable_recovery-17cda674f34ff7cb4fae2c65fcc7c8e99e3d86d3.tar
android_bootable_recovery-17cda674f34ff7cb4fae2c65fcc7c8e99e3d86d3.tar.gz
android_bootable_recovery-17cda674f34ff7cb4fae2c65fcc7c8e99e3d86d3.tar.bz2
android_bootable_recovery-17cda674f34ff7cb4fae2c65fcc7c8e99e3d86d3.tar.lz
android_bootable_recovery-17cda674f34ff7cb4fae2c65fcc7c8e99e3d86d3.tar.xz
android_bootable_recovery-17cda674f34ff7cb4fae2c65fcc7c8e99e3d86d3.tar.zst
android_bootable_recovery-17cda674f34ff7cb4fae2c65fcc7c8e99e3d86d3.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);