diff options
author | Dees Troy <dees_troy@teamw.in> | 2013-07-01 22:30:28 +0200 |
---|---|---|
committer | Gerrit Code Review <gerrit@5.9.244.119> | 2013-07-01 22:30:28 +0200 |
commit | 5bd571b62c3856a571e8a68811c8514b1852a563 (patch) | |
tree | 8a4d4bf6c651c315c098b95027433eccd17b9f7f | |
parent | Fix touch on some Samsung devices (diff) | |
parent | verifier_test : fix the call to verify_file (diff) | |
download | android_bootable_recovery-5bd571b62c3856a571e8a68811c8514b1852a563.tar android_bootable_recovery-5bd571b62c3856a571e8a68811c8514b1852a563.tar.gz android_bootable_recovery-5bd571b62c3856a571e8a68811c8514b1852a563.tar.bz2 android_bootable_recovery-5bd571b62c3856a571e8a68811c8514b1852a563.tar.lz android_bootable_recovery-5bd571b62c3856a571e8a68811c8514b1852a563.tar.xz android_bootable_recovery-5bd571b62c3856a571e8a68811c8514b1852a563.tar.zst android_bootable_recovery-5bd571b62c3856a571e8a68811c8514b1852a563.zip |
-rw-r--r-- | verifier_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/verifier_test.cpp b/verifier_test.cpp index fe5519d79..b263db808 100644 --- a/verifier_test.cpp +++ b/verifier_test.cpp @@ -98,7 +98,7 @@ int main(int argc, char **argv) { ui = new FakeUI(); - int result = verify_file(argv[1], &test_key, 1); + int result = verify_file(argv[1]); if (result == VERIFY_SUCCESS) { printf("SUCCESS\n"); return 0; |