From cffced3727ae1b4e224f2abca8d80b85062877e1 Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Tue, 11 Jun 2024 17:07:44 +0000 Subject: [PATCH] zipalign: succesful -> successful Bugs: me Change-Id: I6cc866b3d8765ed6ef553f2de80bba995bdbc095 Test: n/a --- tools/zipalign/ZipAlign.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/zipalign/ZipAlign.cpp b/tools/zipalign/ZipAlign.cpp index f32f90b130..3d65bc0fc2 100644 --- a/tools/zipalign/ZipAlign.cpp +++ b/tools/zipalign/ZipAlign.cpp @@ -200,7 +200,7 @@ int verify(const char* fileName, int alignment, bool verbose, } if (verbose) - printf("Verification %s\n", foundBad ? "FAILED" : "succesful"); + printf("Verification %s\n", foundBad ? "FAILED" : "successful"); return foundBad ? 1 : 0; }