mirror of https://github.com/acidanthera/audk.git
BaseTools: ElfConvert Tool update VerboseMsg to same with the comment
Fixes: https://bugzilla.tianocore.org/show_bug.cgi?id=994 Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
10944bc390
commit
1794b98f72
|
@ -690,7 +690,7 @@ WriteSections32 (
|
|||
//
|
||||
// Ignore for unkown section type.
|
||||
//
|
||||
VerboseMsg ("%s unknown section type %x. We directly copy this section into Coff file", mInImageName, (unsigned)Shdr->sh_type);
|
||||
VerboseMsg ("%s unknown section type %x. We ignore this unknown section type.", mInImageName, (unsigned)Shdr->sh_type);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -824,7 +824,7 @@ WriteSections64 (
|
|||
//
|
||||
// Ignore for unkown section type.
|
||||
//
|
||||
VerboseMsg ("%s unknown section type %x. We directly copy this section into Coff file", mInImageName, (unsigned)Shdr->sh_type);
|
||||
VerboseMsg ("%s unknown section type %x. We ignore this unknown section type.", mInImageName, (unsigned)Shdr->sh_type);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue