Base: PR6497 move return statement to new line

This commit is contained in:
Chris Hennes
2022-03-29 12:34:34 -05:00
parent 5df3dbae6f
commit b5c72abee4
10 changed files with 110 additions and 55 deletions

View File

@@ -430,7 +430,8 @@ double num_change(char* yytext,char dez_delim,char grp_delim)
else
temp[i++] = *c;
// check buffer overflow
if (i>39) return 0.0;
if (i>39)
return 0.0;
}
temp[i] = '\0';