aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoursoir <chat@joursoir.net>2021-12-10 21:29:37 +0300
committerJoursoir <chat@joursoir.net>2021-12-10 21:29:37 +0300
commita8fc36b116384d5290a0d6d5dde106b346dd97ed (patch)
treeb13de416cf9afbc814e7a4eff26aa8dd9ab25d84
parente20d80d2d1b910ea8e01b30dd2395e245a374262 (diff)
downloadufm-a8fc36b116384d5290a0d6d5dde106b346dd97ed.tar.gz
ufm-a8fc36b116384d5290a0d6d5dde106b346dd97ed.tar.bz2
ufm-a8fc36b116384d5290a0d6d5dde106b346dd97ed.zip
tbi/win: add the missed semicolon
-rw-r--r--Library/UefiShellUfmCommandLib/tbi/win.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/UefiShellUfmCommandLib/tbi/win.c b/Library/UefiShellUfmCommandLib/tbi/win.c
index 13183b2..74d7ebe 100644
--- a/Library/UefiShellUfmCommandLib/tbi/win.c
+++ b/Library/UefiShellUfmCommandLib/tbi/win.c
@@ -218,7 +218,7 @@ BOOLEAN whline(struct window *w, INT32 x, INT32 y, CHAR16 ch, INT32 attr, UINTN
VOID waddch(struct window *w, CHAR16 ch, INT32 attr)
{
- INT32 x = w->curx
+ INT32 x = w->curx;
INT32 y = w->cury;
if(x >= w->width) {