am 5ac65f86: Merge "Fix reporting wrong error message for zipalign output file"

* commit '5ac65f869601df5e73fb84b67e57af8ef95cc3bf':
  Fix reporting wrong error message for zipalign output file
This commit is contained in:
Jean-Baptiste Queru 2012-08-23 15:09:15 -07:00 committed by Android Git Automerger
commit 83af736f28
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ static int process(const char* inFileName, const char* outFileName,
ZipFile::kOpenReadWrite|ZipFile::kOpenCreate|ZipFile::kOpenTruncate)
!= NO_ERROR)
{
fprintf(stderr, "Unable to open '%s' as zip archive\n", inFileName);
fprintf(stderr, "Unable to open '%s' as zip archive\n", outFileName);
return 1;
}