Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/rasops Wrap a line properly.



details:   https://anonhg.NetBSD.org/src/rev/480ac9bd9315
branches:  trunk
changeset: 477607:480ac9bd9315
user:      ad <ad%NetBSD.org@localhost>
date:      Sun Oct 24 15:14:57 1999 +0000

description:
Wrap a line properly.

diffstat:

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

diffs (28 lines):

diff -r 841b20436a2a -r 480ac9bd9315 sys/dev/rasops/rasops32.c
--- a/sys/dev/rasops/rasops32.c Sun Oct 24 12:36:52 1999 +0000
+++ b/sys/dev/rasops/rasops32.c Sun Oct 24 15:14:57 1999 +0000
@@ -1,4 +1,4 @@
-/*      $NetBSD: rasops32.c,v 1.5 1999/10/23 23:14:14 ad Exp $ */
+/*      $NetBSD: rasops32.c,v 1.6 1999/10/24 15:14:57 ad Exp $ */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
 
 #include "opt_rasops.h"
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rasops32.c,v 1.5 1999/10/23 23:14:14 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rasops32.c,v 1.6 1999/10/24 15:14:57 ad Exp $");
 
 #include <sys/types.h>
 #include <sys/param.h>
@@ -120,7 +120,8 @@
 
                while (height--) {
                        dp = rp;
-                       fb = fr[3] | (fr[2] << 8) | (fr[1] << 16) | (fr[0] << 24);
+                       fb = fr[3] | (fr[2] << 8) | (fr[1] << 16) | 
+                           (fr[0] << 24);
                        fr += fs;
                        DELTA(rp, ri->ri_stride, int32_t *);
                        



Home | Main Index | Thread Index | Old Index