diff options
author | ananmaysuri2000@gmail.com | 2021-04-30 15:55:39 +0530 |
---|---|---|
committer | ananmaysuri2000@gmail.com | 2021-04-30 15:55:39 +0530 |
commit | da8fbe948a797bfa150e9eee49336e7871a52f1a (patch) | |
tree | 134b8ff09cb06897a073678004398116e17114c6 /sci_gateway/cpp/sci_octave.cpp | |
parent | 86daf6f44d7cf1007448f25843d5b46e8115e7be (diff) | |
download | fossee-scilab-octave-toolbox-da8fbe948a797bfa150e9eee49336e7871a52f1a.tar.gz fossee-scilab-octave-toolbox-da8fbe948a797bfa150e9eee49336e7871a52f1a.tar.bz2 fossee-scilab-octave-toolbox-da8fbe948a797bfa150e9eee49336e7871a52f1a.zip |
Fixed Classification of Message from Octave
Diffstat (limited to 'sci_gateway/cpp/sci_octave.cpp')
-rw-r--r-- | sci_gateway/cpp/sci_octave.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sci_gateway/cpp/sci_octave.cpp b/sci_gateway/cpp/sci_octave.cpp index e773c65..e6528fa 100644 --- a/sci_gateway/cpp/sci_octave.cpp +++ b/sci_gateway/cpp/sci_octave.cpp @@ -171,7 +171,7 @@ extern "C" std::string err = buffer_err.str(); if (!err.empty() && status_fun == 0) - sciprint("Warning from Octave\n%s", err.c_str()); + sciprint("Message from Octave\n%s", err.c_str()); buffer_err.str(""); //printf("in scilab status_fun is: %d\n", status_fun); //printf("in scilab funcall.n_out_arguments is: %d\n", funcall.n_out_arguments); |