mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-25 22:54:51 +02:00
BaseTools: correct mal-typed CVfrDLGLexer::errstd
The member function CVfrDLGLexer::errstd is intended as an override virtual function of DLGLexerBase::errstd, but due to mismatched prototype, it didn't override, and never got called. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Zenith432 <zenith432@users.sourceforge.net> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
b23276135a
commit
8b13e18143
@ -42,7 +42,7 @@ class CVfrDLGLexer : public VfrLexer
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CVfrDLGLexer (DLGFileInput *F) : VfrLexer (F) {};
|
CVfrDLGLexer (DLGFileInput *F) : VfrLexer (F) {};
|
||||||
INT32 errstd (char *Text)
|
void errstd (const char *Text)
|
||||||
{
|
{
|
||||||
printf ("unrecognized input '%s'\n", Text);
|
printf ("unrecognized input '%s'\n", Text);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user