summaryrefslogtreecommitdiffstats
path: root/verifier.cpp
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2016-10-27 07:10:20 +0200
committerandroid-build-merger <android-build-merger@google.com>2016-10-27 07:10:20 +0200
commit0c17fcd79bbabf964c13d16c0557ff6146e5aee6 (patch)
tree01a0d3c321d48b0a109ace335bb2911d7d8dc7b1 /verifier.cpp
parentMerge "Some cleanups to recovery." am: 46fb0a6a6f am: 00f893fe23 am: 05c68a8775 (diff)
parentMerge "Revert "Some cleanups to recovery."" am: 9514eb1934 am: 0c571e5923 (diff)
downloadandroid_bootable_recovery-0c17fcd79bbabf964c13d16c0557ff6146e5aee6.tar
android_bootable_recovery-0c17fcd79bbabf964c13d16c0557ff6146e5aee6.tar.gz
android_bootable_recovery-0c17fcd79bbabf964c13d16c0557ff6146e5aee6.tar.bz2
android_bootable_recovery-0c17fcd79bbabf964c13d16c0557ff6146e5aee6.tar.lz
android_bootable_recovery-0c17fcd79bbabf964c13d16c0557ff6146e5aee6.tar.xz
android_bootable_recovery-0c17fcd79bbabf964c13d16c0557ff6146e5aee6.tar.zst
android_bootable_recovery-0c17fcd79bbabf964c13d16c0557ff6146e5aee6.zip
Diffstat (limited to 'verifier.cpp')
-rw-r--r--verifier.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/verifier.cpp b/verifier.cpp
index 44098f70e..82cdd3bc7 100644
--- a/verifier.cpp
+++ b/verifier.cpp
@@ -14,11 +14,9 @@
* limitations under the License.
*/
-#include "verifier.h"
-
#include <errno.h>
+#include <malloc.h>
#include <stdio.h>
-#include <stdlib.h>
#include <string.h>
#include <algorithm>
@@ -33,6 +31,9 @@
#include "common.h"
#include "print_sha1.h"
#include "ui.h"
+#include "verifier.h"
+
+extern RecoveryUI* ui;
static constexpr size_t MiB = 1024 * 1024;