verifier_test : fix the call to verify_file

This was cause mm to fail when ran in the bootable/recovery directory

Change-Id: I1416a1a6a4c41e6d4b14386715074a8da9e39b43
This commit is contained in:
Trevor Drake
2013-05-16 01:29:19 +01:00
parent f6b15d1d45
commit 2d388ea5f9
+1 -1
View File
@@ -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;