Author: jkim
Date: Mon Apr 16 23:29:12 2012
New Revision: 234362
URL: http://svn.freebsd.org/changeset/base/234362

Log:
  Fix a Clang warning.
  
  Submitted by: arundel

Modified:
  head/sys/dev/fb/s3_pci.c

Modified: head/sys/dev/fb/s3_pci.c
==============================================================================
--- head/sys/dev/fb/s3_pci.c    Mon Apr 16 23:19:21 2012        (r234361)
+++ head/sys/dev/fb/s3_pci.c    Mon Apr 16 23:29:12 2012        (r234362)
@@ -513,7 +513,7 @@ s3pci_attach(device_t dev)
        /* Attach the driver to the VGA/VESA framework
         */
        for (i = 0; (adp = vid_get_adapter(i)) != NULL; ++i) {
-               if ((adp->va_type == KD_VGA))
+               if (adp->va_type == KD_VGA)
                        break;
        }
 
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to