mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-17 07:07:10 +00:00
PRIVATE: Fix potentially uninitialized variable on release build
assert is no-op.
This commit is contained in:
parent
05b72a8896
commit
e870c56f21
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user