Changed the parameter list of Packer::patchFilter32(), for consisitency

with the other patch and filter methods.

committer: mfx <mfx> 976879665 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2000-12-15 11:27:45 +00:00
parent 0b93d6c1f5
commit cb7b0e93cf
7 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -217,7 +217,7 @@ void PackVmlinuzI386::pack(OutputFile *fo)
memcpy(loader, getLoader(), lsize);
patchPackHeader(loader, lsize);
patchFilter32(ft, loader, lsize);
patchFilter32(loader, lsize, &ft);
patch_le32(loader, lsize, "ESI1", zimage_offset + lsize);
patch_le32(loader, lsize, "KEIP", kernel_entry);
patch_le32(loader, lsize, "STAK", stack_during_uncompression);
@@ -298,7 +298,7 @@ void PackBvmlinuzI386::pack(OutputFile *fo)
MemBuffer loader(lsize);
memcpy(loader, getLoader(), lsize);
patchFilter32(ft, loader, lsize);
patchFilter32(loader, lsize, &ft);
patchPackHeader(loader, lsize);
const int e_len = getLoaderSectionStart("LZCUTPOI");