PRIVATE: Fix potentially uninitialized variable on release build

assert is no-op.
This commit is contained in:
Orgad Shaneh 2021-03-23 22:40:06 +02:00 committed by Filippos Karapetis
parent 05b72a8896
commit e870c56f21

View File

@ -205,7 +205,7 @@ int add() {
int negate() {
Datum d = pop();
int v;
int v = 0;
if (d.type == NAME) {
//debug("negating %s", d.u.sym->name->c_str());
v = d.u.sym->u.val;