diff options
author | Sunil Shetye | 2019-05-16 12:46:12 +0530 |
---|---|---|
committer | Sunil Shetye | 2019-05-29 11:08:04 +0530 |
commit | 953447ba5cd043470d0f35c8a780e1b4c4d0aebf (patch) | |
tree | bf2d0ad44345da19e67fd387c4ae79de0fcf7305 /macros/FunctionList/FL_ExistCFunction.sci | |
parent | 5808c44e344c3f80504ec93d2bb588e83d0170b8 (diff) | |
download | scilab2c-953447ba5cd043470d0f35c8a780e1b4c4d0aebf.tar.gz scilab2c-953447ba5cd043470d0f35c8a780e1b4c4d0aebf.tar.bz2 scilab2c-953447ba5cd043470d0f35c8a780e1b4c4d0aebf.zip |
cannot append list to string
Diffstat (limited to 'macros/FunctionList/FL_ExistCFunction.sci')
-rw-r--r-- | macros/FunctionList/FL_ExistCFunction.sci | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/FunctionList/FL_ExistCFunction.sci b/macros/FunctionList/FL_ExistCFunction.sci index 7c3d24c5..51bdad34 100644 --- a/macros/FunctionList/FL_ExistCFunction.sci +++ b/macros/FunctionList/FL_ExistCFunction.sci @@ -109,7 +109,7 @@ if (flagexist == %F) PrintStringInfo('Converted: ' + strcat(Converted(grep(Converted, ASTFunName)), ' '),ReportFileName,'file','y'); clear Converted load(ToBeConvertedDat,'ToBeConverted'); - PrintStringInfo('ToBeConverted: ' + ToBeConverted.SCIFunctionName + ' ' + ToBeConverted.CFunctionName,ReportFileName,'file','y'); + PrintStringInfo('ToBeConverted: ' + typeof(ToBeConverted.SCIFunctionName) + ' ' + typeof(ToBeConverted.CFunctionName),ReportFileName,'file','y'); clear ToBeConverted // #RNU_RES_E end |