diff options
author | Tao Bao <tbao@google.com> | 2018-07-10 18:38:08 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2018-07-10 18:38:08 +0200 |
commit | 6b18eb706e626e432b3d0a2846cdc124b7ff1b94 (patch) | |
tree | 8c57252a6e8fe6e20966402ac1675562082407d8 /updater | |
parent | Merge "edify: Remove VAL_INVALID and move ValueType into Value class." (diff) | |
parent | edify: Rename parse_string to ParseString and let it take std::string. (diff) | |
download | android_bootable_recovery-6b18eb706e626e432b3d0a2846cdc124b7ff1b94.tar android_bootable_recovery-6b18eb706e626e432b3d0a2846cdc124b7ff1b94.tar.gz android_bootable_recovery-6b18eb706e626e432b3d0a2846cdc124b7ff1b94.tar.bz2 android_bootable_recovery-6b18eb706e626e432b3d0a2846cdc124b7ff1b94.tar.lz android_bootable_recovery-6b18eb706e626e432b3d0a2846cdc124b7ff1b94.tar.xz android_bootable_recovery-6b18eb706e626e432b3d0a2846cdc124b7ff1b94.tar.zst android_bootable_recovery-6b18eb706e626e432b3d0a2846cdc124b7ff1b94.zip |
Diffstat (limited to 'updater')
-rw-r--r-- | updater/updater.cpp | 2 |
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); |