Fixed warning in MCASE function

This commit is contained in:
Armando Rivera 2013-11-09 18:37:09 -05:00
parent df5e9466a1
commit 2b433321d5

View File

@ -86,7 +86,7 @@ ENDFUNCTION
FUNCTION CSTRING MCASE$ (CSTRING S) BEGIN
DIM AS CSTRING tmpStr(S);
DIM AS bool capFlag;
DIM AS bool capFlag = FALSE;
DIM AS register size_t i;