diff options
author | Tianjie Xu <xunchang@google.com> | 2016-05-31 18:29:49 +0200 |
---|---|---|
committer | Tianjie Xu <xunchang@google.com> | 2016-06-03 21:12:50 +0200 |
commit | 7ce287d432dd3a4dc8841fc59e11ee1a0b7808a1 (patch) | |
tree | 9e1a3f6c63abe5ceb130b93699fb0d7df43ec0ec /edify | |
parent | Merge "Allow recovery to return error codes" into nyc-dev (diff) | |
download | android_bootable_recovery-7ce287d432dd3a4dc8841fc59e11ee1a0b7808a1.tar android_bootable_recovery-7ce287d432dd3a4dc8841fc59e11ee1a0b7808a1.tar.gz android_bootable_recovery-7ce287d432dd3a4dc8841fc59e11ee1a0b7808a1.tar.bz2 android_bootable_recovery-7ce287d432dd3a4dc8841fc59e11ee1a0b7808a1.tar.lz android_bootable_recovery-7ce287d432dd3a4dc8841fc59e11ee1a0b7808a1.tar.xz android_bootable_recovery-7ce287d432dd3a4dc8841fc59e11ee1a0b7808a1.tar.zst android_bootable_recovery-7ce287d432dd3a4dc8841fc59e11ee1a0b7808a1.zip |
Diffstat (limited to '')
-rw-r--r-- | edify/expr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/edify/expr.h b/edify/expr.h index 5c06de846..886347991 100644 --- a/edify/expr.h +++ b/edify/expr.h @@ -49,6 +49,8 @@ typedef struct { // in addition to the error code. CauseCode cause_code = kNoCause; + bool is_retry = false; + } State; #define VAL_STRING 1 // data will be NULL-terminated; size doesn't count null |