Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/rasops Small consistency nit.



details:   https://anonhg.NetBSD.org/src/rev/fb431904c770
branches:  trunk
changeset: 475826:fb431904c770
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Thu Aug 26 22:44:29 1999 +0000

description:
Small consistency nit.

diffstat:

 sys/dev/rasops/rasops.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 108613d8aa6e -r fb431904c770 sys/dev/rasops/rasops.c
--- a/sys/dev/rasops/rasops.c   Thu Aug 26 21:48:11 1999 +0000
+++ b/sys/dev/rasops/rasops.c   Thu Aug 26 22:44:29 1999 +0000
@@ -1,4 +1,4 @@
-/*      $NetBSD: rasops.c,v 1.15 1999/08/26 21:48:11 thorpej Exp $ */
+/*      $NetBSD: rasops.c,v 1.16 1999/08/26 22:44:29 thorpej Exp $ */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rasops.c,v 1.15 1999/08/26 21:48:11 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rasops.c,v 1.16 1999/08/26 22:44:29 thorpej Exp $");
 
 #include "rasops_glue.h"
 
@@ -406,7 +406,7 @@
        if (flg & WSATTR_BLINK)
                return (EINVAL);
                
-       if ((flg & WSATTR_REVERSE) != 0) {
+       if (flg & WSATTR_REVERSE) {
                swap = fg;
                fg = bg;
                bg = swap;



Home | Main Index | Thread Index | Old Index