1
0
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:
Jim Meyering
2005-05-26 16:09:38 +00:00
parent f3dfdff460
commit 6fc0ccf717

View File

@@ -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;
}