diff options
author | Karl Wette <karl.wette@ligo.org> | 2018-05-10 23:26:06 +1000 |
---|---|---|
committer | Karl Wette <karl.wette@ligo.org> | 2018-05-12 22:25:07 +1000 |
commit | e8e507bf0bae72e7f3bb798e326ec5d81b230205 (patch) | |
tree | e629bce8285bc9ad5145fcb6cfc71a4958bb59b3 | |
parent | ee17f8d04f40bfc25ecaf146a6ebe667eabcffb6 (diff) | |
download | swig-e8e507bf0bae72e7f3bb798e326ec5d81b230205.tar.gz |
Lib/octave: fix function name passed to unwind_protect::begin_frame()
-rw-r--r-- | Lib/octave/octruntime.swg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/octave/octruntime.swg b/Lib/octave/octruntime.swg index f5e687123..96f7399f9 100644 --- a/Lib/octave/octruntime.swg +++ b/Lib/octave/octruntime.swg @@ -170,7 +170,7 @@ SWIGINTERN bool SWIG_Octave_InstallFunction(octave_function *octloadfcn, std::st frame.protect_var(discard_error_messages); discard_error_messages = true; frame.protect_var(discard_warning_messages); discard_warning_messages = true; #else - unwind_protect::begin_frame("SWIG_Octave_LoadModule"); + unwind_protect::begin_frame("SWIG_Octave_InstallFunction"); unwind_protect_int(error_state); error_state = 0; unwind_protect_int(warning_state); warning_state = 0; unwind_protect_bool(discard_error_messages); discard_error_messages = true; |