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:
Nigel Croxon 2016-03-03 16:36:45 -05:00
parent a213b514a3
commit ab6c6ef7f3
1 changed files with 2 additions and 2 deletions

View File

@ -743,7 +743,7 @@ Routine Description:
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
@ -759,7 +759,7 @@ Returns:
UINTN back;
va_start (args, fmt);
back = _IPrint (Column, Row, ST->ConOut, fmt, NULL, args);
back = _IPrint (Column, Row, Out, fmt, NULL, args);
va_end (args);
return back;
}