diff options
author | jofret | 2012-07-25 09:26:16 +0000 |
---|---|---|
committer | jofret | 2012-07-25 09:26:16 +0000 |
commit | 6f7bf42267c0c63de48bc103f5c05b38be556a80 (patch) | |
tree | d08bf9c674e31960580c45d958dfa9779c824b77 /macros/CCodeGeneration/GenCFunDatFiles.sci | |
parent | ba22070d0145ef317b09012776aff9c4273f038e (diff) | |
download | scilab2c-6f7bf42267c0c63de48bc103f5c05b38be556a80.tar.gz scilab2c-6f7bf42267c0c63de48bc103f5c05b38be556a80.tar.bz2 scilab2c-6f7bf42267c0c63de48bc103f5c05b38be556a80.zip |
Adapt Scilab2C to new save behaviour
Diffstat (limited to 'macros/CCodeGeneration/GenCFunDatFiles.sci')
-rw-r--r-- | macros/CCodeGeneration/GenCFunDatFiles.sci | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/CCodeGeneration/GenCFunDatFiles.sci b/macros/CCodeGeneration/GenCFunDatFiles.sci index 62c8f4bc..9af858c7 100644 --- a/macros/CCodeGeneration/GenCFunDatFiles.sci +++ b/macros/CCodeGeneration/GenCFunDatFiles.sci @@ -67,7 +67,7 @@ FunInfo.OutArg = OutArg; FunInfo.NOutArg = NOutArg; FunInfo.PosFirstOutScalar = PosFirstOutScalar; FunInfo.LibTypeInfo = LibTypeInfo; -save(fullfile(FunInfoDatDir,CFunName+'.dat'),FunInfo); +save(fullfile(FunInfoDatDir,CFunName+'.dat'), "FunInfo"); clear FunInfo endfunction |