Remove dead assignment.
authorfcambus <fcambus@openbsd.org>
Sat, 23 Dec 2017 10:30:25 +0000 (10:30 +0000)
committerfcambus <fcambus@openbsd.org>
Sat, 23 Dec 2017 10:30:25 +0000 (10:30 +0000)
Now that we call rasops_putchar_rotated(), we don't need ri anymore.

OK kettenis@

sys/dev/rasops/rasops.c

index 778c355..27b605e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rasops.c,v 1.48 2017/08/22 12:24:45 fcambus Exp $     */
+/*     $OpenBSD: rasops.c,v 1.49 2017/12/23 10:30:25 fcambus Exp $     */
 /*     $NetBSD: rasops.c,v 1.35 2001/02/02 06:01:01 marcus Exp $       */
 
 /*-
@@ -1265,12 +1265,9 @@ rasops_putchar_rotated(void *cookie, int row, int col, u_int uc, long attr)
 int
 rasops_erasecols_rotated(void *cookie, int row, int col, int num, long attr)
 {
-       struct rasops_info *ri;
        int i;
        int rc;
 
-       ri = (struct rasops_info *)cookie;
-
        for (i = col; i < col + num; i++) {
                rc = rasops_putchar_rotated(cookie, row, i, ' ', attr);
                if (rc != 0)