From 6e9fb02d073ea37f7ee2c4fefd818fd9721255ba Mon Sep 17 00:00:00 2001 From: martin Date: Sat, 14 Sep 2013 21:06:50 +0000 Subject: [PATCH] Comment out a variable only used in #if 0 code --- sys/dev/wscons/mra.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/sys/dev/wscons/mra.c b/sys/dev/wscons/mra.c index 490a3b9b3b05..55d712f15b32 100644 --- a/sys/dev/wscons/mra.c +++ b/sys/dev/wscons/mra.c @@ -1,4 +1,4 @@ -/* $NetBSD: mra.c,v 1.4 2006/10/09 10:43:01 peter Exp $ */ +/* $NetBSD: mra.c,v 1.5 2013/09/14 21:06:50 martin Exp $ */ /* * Copyright (c) 1999 Shin Takemura All rights reserved. @@ -28,7 +28,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: mra.c,v 1.4 2006/10/09 10:43:01 peter Exp $"); +__KERNEL_RCSID(0, "$NetBSD: mra.c,v 1.5 2013/09/14 21:06:50 martin Exp $"); #include #include @@ -52,7 +52,8 @@ mra_Y_AX1_BX2_C(const int *y, int ys, int64_t X1X1s, X2X2s, X1X2s; int64_t YYs, X1Ys, X2Ys; int64_t S11, S22, S12; - int64_t SYY, S1Y, S2Y; +// int64_t SYY; + int64_t S1Y, S2Y; int64_t A, B, C, M; #define AA(p, s, i) (*((const long *)(((const char *)(p)) + (s) * (i)))) #define X1(i) AA(x1, x1s, i) @@ -84,7 +85,7 @@ mra_Y_AX1_BX2_C(const int *y, int ys, S22 = X2X2s - n * X2a * X2a; S12 = X1X2s - n * X1a * X2a; - SYY = YYs - n * Ya * Ya; +// SYY = YYs - n * Ya * Ya; S1Y = X1Ys - n * X1a * Ya; S2Y = X2Ys - n * X2a * Ya;