[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:
Adrian Chadd 2020-07-14 05:02:18 +00:00
parent 85c9048573
commit 14679cb2f3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=363172

View File

@ -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) {