octave.cxx: replace Printf() with Append() for consistency

This commit is contained in:
Karl Wette 2020-04-30 23:45:39 +10:00
commit 66f4f7de8e

View file

@ -846,7 +846,7 @@ public:
Swig_warning(WARN_TYPEMAP_VARIN_UNDEF, input_file, line_number, "Unable to set variable of type %s.\n", SwigType_str(t, 0));
}
Append(setf->code, "fail:\n");
Printf(setf->code, "return octave_value_list();\n");
Append(setf->code, "return octave_value_list();\n");
} else {
Printf(setf->code, "return octave_set_immutable(args,nargout);");
}