diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 1998-02-12 20:52:24 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1998-02-12 20:52:24 +0000 |
commit | b9483c6b9b653d3c020410125844cd9a43bda95e (patch) | |
tree | d128200ee72074f598e43bbfc493aac92400d59e /sys/isa/syscons.c | |
parent | befeeb59cbc682f17575245dd9a9f4e20045803e (diff) |
Fix a white-space nit which I happened to notice.
Notes
Notes:
svn path=/head/; revision=33280
Diffstat (limited to 'sys/isa/syscons.c')
-rw-r--r-- | sys/isa/syscons.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/isa/syscons.c b/sys/isa/syscons.c index 3cc3e5cb0372..d2fa9f343b44 100644 --- a/sys/isa/syscons.c +++ b/sys/isa/syscons.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: syscons.c,v 1.251 1998/02/11 15:02:40 yokota Exp $ + * $Id: syscons.c,v 1.252 1998/02/12 16:35:11 yokota Exp $ */ #include "sc.h" @@ -352,8 +352,7 @@ draw_cursor_image(scr_stat *scp) cursor_image &= 0xff00; cursor_image |= DEAD_CHAR; } - } - else { + } else { cursor_image = (*(ptr) & 0x00ff) | *(scp->cursor_pos) & 0xff00; scp->cursor_saveunder = cursor_image; if (!(flags & BLINK_CURSOR)||((flags & BLINK_CURSOR)&&(blinkrate & 4))){ |