[bc] Fix a "maybe uninitialized" compiler warning under mips-gcc-6.3.0.
I guess this didn't like the case statements.. ? But this does quieten the compiler error.
This commit is contained in:
parent
1c3fef2e08
commit
140a83ef1b
@ -180,7 +180,7 @@ static inline BcVec* bc_program_vec(const BcProgram *p, size_t idx, BcType type)
|
||||
|
||||
static BcNum* bc_program_num(BcProgram *p, BcResult *r) {
|
||||
|
||||
BcNum *n;
|
||||
BcNum *n = NULL;
|
||||
|
||||
switch (r->t) {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user