function old new delta
zbc_program_num 836 835 -1
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
n->num[n->len] = val[i] - '0';
++n->len;
skip_dot:
- if ((ssize_t)--i == (ssize_t)-1) break;
- if (val[i] == '.') goto skip_dot;
+ if (i == 0) break;
+ if (val[--i] == '.') goto skip_dot;
}
break;
}
}
- // if this is reached, the value is entirely zero
+ // if for() exits without hitting if(), the value is entirely zero
}
// Note: n is already "bc_num_zero()"ed,