diff options
| author | Paul Traina <pst@FreeBSD.org> | 1996-09-22 01:05:21 +0000 |
|---|---|---|
| committer | Paul Traina <pst@FreeBSD.org> | 1996-09-22 01:05:21 +0000 |
| commit | 04bd4759a8a72afbc8dc1dc1a270fc15a007f231 (patch) | |
| tree | 0f6858a8dfa4d0c30818e375ae97e59803ce202c /lib/libncurses/lib_bkgd.c | |
| parent | 79b3126fb3921a60332860e87d2da85fb135611b (diff) | |
Notes
Diffstat (limited to 'lib/libncurses/lib_bkgd.c')
| -rw-r--r-- | lib/libncurses/lib_bkgd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libncurses/lib_bkgd.c b/lib/libncurses/lib_bkgd.c index a74c56e73bbb..06289351e7d9 100644 --- a/lib/libncurses/lib_bkgd.c +++ b/lib/libncurses/lib_bkgd.c @@ -27,7 +27,7 @@ int x, y; T(("wbkgd(%x, %x) called", win, ch)); for (y = 0; y < win->_maxy; y++) for (x = 0; x < win->_maxx; x++) - if (win->_line[y][x]&A_CHARTEXT == ' ') + if ((win->_line[y][x]&A_CHARTEXT) == ' ') win->_line[y][x] |= ch; else win->_line[y][x] |= (ch&A_ATTRIBUTES); |
