Bug 508746 - Log file written incorrectly for EXECUTE PATCH and FINISH PATCH. r=bsmedberg

This commit is contained in:
Robert Strong 2009-08-07 13:19:50 -07:00
Родитель 3b0595ec3f
Коммит c7c5a3e628
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -978,7 +978,7 @@ PatchFile::Prepare()
int
PatchFile::Execute()
{
LOG(("EXECUTE PATCH %s\n", mDestFile));
LOG(("EXECUTE PATCH 2 " LOG_S "\n", mDestFile));
// Create backup copy of the destination file before proceeding.
@ -1004,7 +1004,7 @@ PatchFile::Execute()
void
PatchFile::Finish(int status)
{
LOG(("FINISH PATCH %s\n", mDestFile));
LOG(("FINISH PATCH " LOG_S "\n", mDestFile));
backup_finish(mDestFile, status);
}