This -Wall -Wextra thing actually caught a real bug.
Signed-off-by: Peter Jones <pjones@redhat.com> Signed-off-by: Nigel Croxon <nigel.croxon@hpe.com>
This commit is contained in:
parent
a213b514a3
commit
ab6c6ef7f3
@ -743,7 +743,7 @@ Routine Description:
|
|||||||
|
|
||||||
Arguments:
|
Arguments:
|
||||||
|
|
||||||
Out - The console to print the string too
|
Out - The console to print the string to
|
||||||
|
|
||||||
Column, Row - The cursor position to print the string at
|
Column, Row - The cursor position to print the string at
|
||||||
|
|
||||||
@ -759,7 +759,7 @@ Returns:
|
|||||||
UINTN back;
|
UINTN back;
|
||||||
|
|
||||||
va_start (args, fmt);
|
va_start (args, fmt);
|
||||||
back = _IPrint (Column, Row, ST->ConOut, fmt, NULL, args);
|
back = _IPrint (Column, Row, Out, fmt, NULL, args);
|
||||||
va_end (args);
|
va_end (args);
|
||||||
return back;
|
return back;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user