diff options
author | jofret | 2010-06-23 19:44:55 +0000 |
---|---|---|
committer | jofret | 2010-06-23 19:44:55 +0000 |
commit | dafe68b1f05c3d1d288e7435b3f146326ea4eebc (patch) | |
tree | 441af19e42a3f486f2348ca1fd1824e7c9f3ff20 /macros/GeneralFunctions/SCI2CCreateDir.sci | |
parent | 43f050700865808bde98b87129070ded818961f1 (diff) | |
download | scilab2c-dafe68b1f05c3d1d288e7435b3f146326ea4eebc.tar.gz scilab2c-dafe68b1f05c3d1d288e7435b3f146326ea4eebc.tar.bz2 scilab2c-dafe68b1f05c3d1d288e7435b3f146326ea4eebc.zip |
Remove SCI2Cerror wrapping call
Diffstat (limited to 'macros/GeneralFunctions/SCI2CCreateDir.sci')
-rw-r--r-- | macros/GeneralFunctions/SCI2CCreateDir.sci | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/GeneralFunctions/SCI2CCreateDir.sci b/macros/GeneralFunctions/SCI2CCreateDir.sci index cc152462..dcc39c3e 100644 --- a/macros/GeneralFunctions/SCI2CCreateDir.sci +++ b/macros/GeneralFunctions/SCI2CCreateDir.sci @@ -25,7 +25,7 @@ SCI2CNInArgCheck(argn(2),1,1); status_dir = mkdir(tmppath,tmpfname+tmpextension) ;
if (status_dir == 0)
- SCI2Cerror('Cannot create: '+OutDir);
+ error(9999, 'Cannot create: '+OutDir);
end
endfunction
|