mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-12 06:57:33 +02:00
(toarith): Fix a sign error introduced on 2005-01-14.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user