diff options
author | Ananmay Suri | 2021-04-19 19:20:58 +0530 |
---|---|---|
committer | Ananmay Suri | 2021-04-19 19:20:58 +0530 |
commit | 8c6df40237b718d34c4f3cadc82386d362b2592c (patch) | |
tree | 27609fe95489a12a4b4fcf28dcb8c91789b86f8c /sci_gateway/cpp | |
parent | 91c48b90d09b9873d1498b9e3af80091b0dd4cee (diff) | |
download | fossee-scilab-octave-toolbox-8c6df40237b718d34c4f3cadc82386d362b2592c.tar.gz fossee-scilab-octave-toolbox-8c6df40237b718d34c4f3cadc82386d362b2592c.tar.bz2 fossee-scilab-octave-toolbox-8c6df40237b718d34c4f3cadc82386d362b2592c.zip |
Removed unwanted error statements
Diffstat (limited to 'sci_gateway/cpp')
-rwxr-xr-x | sci_gateway/cpp/libscilab_octave.so | bin | 27400 -> 27400 bytes | |||
-rw-r--r-- | sci_gateway/cpp/sci_octave.cpp | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/sci_gateway/cpp/libscilab_octave.so b/sci_gateway/cpp/libscilab_octave.so Binary files differindex f4317ae..5802301 100755 --- a/sci_gateway/cpp/libscilab_octave.so +++ b/sci_gateway/cpp/libscilab_octave.so diff --git a/sci_gateway/cpp/sci_octave.cpp b/sci_gateway/cpp/sci_octave.cpp index d76993f..2e22b97 100644 --- a/sci_gateway/cpp/sci_octave.cpp +++ b/sci_gateway/cpp/sci_octave.cpp @@ -180,7 +180,7 @@ int sci_octave_fun(scilabEnv env, int nin, scilabVar* in, int nopt, scilabOpt* o //printf("in scilab ouput args are: %d\n", funcall.n_out_arguments); if(status_fun==1) { - Scierror(999, "Scilab unable to process!\n"); + Scierror(999, ""); return 1; } else if(funcall.n_out_user <= funcall.n_out_arguments) |