diff options
Diffstat (limited to 'scilab2c/macros/ASTManagement/GenOutArgNames.sci')
-rw-r--r-- | scilab2c/macros/ASTManagement/GenOutArgNames.sci | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scilab2c/macros/ASTManagement/GenOutArgNames.sci b/scilab2c/macros/ASTManagement/GenOutArgNames.sci index d31d4ca5..0e683835 100644 --- a/scilab2c/macros/ASTManagement/GenOutArgNames.sci +++ b/scilab2c/macros/ASTManagement/GenOutArgNames.sci @@ -49,7 +49,7 @@ if (NLhsArg > 0) PrintStringInfo('Using Equal Lhs names.',ReportFileName,'file','y'); //#RNU_RES_E if (NLhsArg ~= NOutArg) - SCI2CerrorFile('NLhsArg='+string(NLhsArg)+' must be equal to NOutArg='+string(NOutArg)+'.',ReportFileName); + error(9999, 'NLhsArg='+string(NLhsArg)+' must be equal to NOutArg='+string(NOutArg)+'.'); end for counteroutputargs = 1:NOutArg OutArg(counteroutputargs).Name=LhsArg(counteroutputargs).Name; |