summaryrefslogtreecommitdiff
path: root/payloads/libpayload/curses/PDCurses-3.4/pdcurses/bkgd.c
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2011-10-31 12:54:00 -0700
committerPatrick Georgi <patrick@georgi-clan.de>2011-11-01 19:08:23 +0100
commite11835e2995d130890ca9f45cb3e304f2ea3a6a9 (patch)
treecfc5345e9d98b231de0699714771a5d7f54c6ce1 /payloads/libpayload/curses/PDCurses-3.4/pdcurses/bkgd.c
parentdd6906328904309e4d93e4bcb04a6cfa3646f29d (diff)
downloadcoreboot-e11835e2995d130890ca9f45cb3e304f2ea3a6a9.tar.xz
libpayload: remove trailing whitespace and run dos2unix
Change-Id: Iffed3602456f5306711c65f06c873c58d4086e11 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/363 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'payloads/libpayload/curses/PDCurses-3.4/pdcurses/bkgd.c')
-rw-r--r--payloads/libpayload/curses/PDCurses-3.4/pdcurses/bkgd.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/payloads/libpayload/curses/PDCurses-3.4/pdcurses/bkgd.c b/payloads/libpayload/curses/PDCurses-3.4/pdcurses/bkgd.c
index 083239e1da..d511efe8b3 100644
--- a/payloads/libpayload/curses/PDCurses-3.4/pdcurses/bkgd.c
+++ b/payloads/libpayload/curses/PDCurses-3.4/pdcurses/bkgd.c
@@ -39,7 +39,7 @@ RCSID("$Id: bkgd.c,v 1.39 2008/07/13 16:08:18 wmcbrine Exp $")
there is a conflict (e.g., different color pairs).
Return Value:
- bkgd() and wbkgd() return OK, unless the window is NULL, in
+ bkgd() and wbkgd() return OK, unless the window is NULL, in
which case they return ERR.
Portability X/Open BSD SYS V
@@ -86,7 +86,7 @@ int wbkgd(WINDOW *win, chtype ch)
newch = win->_bkgd & A_CHARTEXT;
- /* what follows is what seems to occur in the System V
+ /* what follows is what seems to occur in the System V
implementation of this routine */
for (y = 0; y < win->_maxy; y++)
@@ -97,26 +97,26 @@ int wbkgd(WINDOW *win, chtype ch)
ch = *winptr;
- /* determine the colors and attributes of the character read
+ /* determine the colors and attributes of the character read
from the window */
colr = ch & A_COLOR;
attr = ch & (A_ATTRIBUTES ^ A_COLOR);
- /* if the color is the same as the old background color,
+ /* if the color is the same as the old background color,
then make it the new background color, otherwise leave it */
if (colr == oldcolr)
colr = newcolr;
- /* remove any attributes (non color) from the character that
- were part of the old background, then combine the
+ /* remove any attributes (non color) from the character that
+ were part of the old background, then combine the
remaining ones with the new background */
attr ^= oldattr;
attr |= newattr;
- /* change character if it is there because it was the old
+ /* change character if it is there because it was the old
background character */
ch &= A_CHARTEXT;