diff options
author | alex <alex085@users.noreply.github.com> | 2019-01-18 12:07:16 +0300 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-01-18 10:07:16 +0100 |
commit | ce24edac4f9a132138817060b3a8f2a492ade2e4 (patch) | |
tree | af1432944c699e7dcc0bae8a1a5ddaf380c96b08 /Library | |
parent | c4084a6419fc33cf7a178ae930fcc75ec9417141 (diff) | |
download | VeraCrypt-DCS-ce24edac4f9a132138817060b3a8f2a492ade2e4.tar.gz VeraCrypt-DCS-ce24edac4f9a132138817060b3a8f2a492ade2e4.zip |
ConsoleShowTip: remove an excess parameter for OUT_PRINT (#9)
Diffstat (limited to 'Library')
-rw-r--r-- | Library/CommonLib/EfiConsole.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/CommonLib/EfiConsole.c b/Library/CommonLib/EfiConsole.c index 0d94235..71373ab 100644 --- a/Library/CommonLib/EfiConsole.c +++ b/Library/CommonLib/EfiConsole.c @@ -175,7 +175,7 @@ ConsoleShowTip( // remove tip
for (i = 0; i < StrLen(tip); ++i) {
- OUT_PRINT(L"\b \b", tip);
+ OUT_PRINT(L"\b \b");
}
}
|