From 6fc0ccf717c09d2dc941ee9d6622e7e987653eeb Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 26 May 2005 16:09:38 +0000 Subject: [PATCH] (toarith): Fix a sign error introduced on 2005-01-14. --- src/expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/expr.c b/src/expr.c index 7a7745d..1b42cf6 100644 --- a/src/expr.c +++ b/src/expr.c @@ -356,7 +356,7 @@ toarith (VALUE *v) while (*++cp); free (v->u.s); - v->u.i = value * sign; + v->u.i = value; v->type = integer; return true; } -- 2.7.4