diff options
author | Joursoir <chat@joursoir.net> | 2021-12-10 21:29:37 +0300 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2021-12-10 21:29:37 +0300 |
commit | a8fc36b116384d5290a0d6d5dde106b346dd97ed (patch) | |
tree | b13de416cf9afbc814e7a4eff26aa8dd9ab25d84 /Library/UefiShellUfmCommandLib/tbi | |
parent | e20d80d2d1b910ea8e01b30dd2395e245a374262 (diff) | |
download | ufm-a8fc36b116384d5290a0d6d5dde106b346dd97ed.tar.gz ufm-a8fc36b116384d5290a0d6d5dde106b346dd97ed.tar.bz2 ufm-a8fc36b116384d5290a0d6d5dde106b346dd97ed.zip |
tbi/win: add the missed semicolon
Diffstat (limited to 'Library/UefiShellUfmCommandLib/tbi')
-rw-r--r-- | Library/UefiShellUfmCommandLib/tbi/win.c | 2 |
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) { |