diff options
| author | tsutsui <tsutsui@NetBSD.org> | 2013-05-21 15:50:09 +0000 |
|---|---|---|
| committer | tsutsui <tsutsui@NetBSD.org> | 2013-05-21 15:50:09 +0000 |
| commit | 4335a45bee9729486cf0a408e5ef19affe1bf78e (patch) | |
| tree | 9a60c18f8163c590657cb2f012ec3baefe4f2516 /sys/dev/rasops | |
| parent | 863db99f04c02488010685f2e0f4cbce77d2c7b2 (diff) | |
Fix fatal (but probably unused) typo in ri->ri_hwbits case in copycols.
Diffstat (limited to 'sys/dev/rasops')
| -rw-r--r-- | sys/dev/rasops/rasops_bitops.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/rasops/rasops_bitops.h b/sys/dev/rasops/rasops_bitops.h index bbb965ed603..4defcc9d528 100644 --- a/sys/dev/rasops/rasops_bitops.h +++ b/sys/dev/rasops/rasops_bitops.h @@ -1,4 +1,4 @@ -/* $NetBSD: rasops_bitops.h,v 1.12 2010/04/08 16:45:53 macallan Exp $ */ +/* $NetBSD: rasops_bitops.h,v 1.13 2013/05/21 15:50:09 tsutsui Exp $ */ /*- * Copyright (c) 1999 The NetBSD Foundation, Inc. @@ -313,7 +313,7 @@ NAME(copycols)(void *cookie, int row, int src, int dst, int num) PUTBITS(tmp, 0, db, dp); if (ri->ri_hwbits) { PUTBITS(tmp, 0, db, hp); - hp++; + hp--; } dp--; sp--; |
