Mercurial > hg > octave-jordi
diff libinterp/dldfcn/symbfact.cc @ 20725:25d676f9619c
Preface error() messages with name of function when possible.
* FIRfilter.m, subsasgn.m, get.m, polynomial.m, polynomial_superiorto.m,
set.m, subsasgn.m, subsref.m, Cell.cc, data.cc, graphics.in.h, toplev.cc,
urlwrite.cc, audiodevinfo.cc, symbfact.cc, CollocWt.cc, inputParser.m,
narginchk.m, nargoutchk.m, uicontrol.m, rgb2ind.m, textread.m, open.m,
__w2mpth__.m, fminbnd.m, pkg.m, pan.m, printd.m, rotate3d.m, zoom.m, eigs.m,
validatestring.m, __run_test_suite__.m, runtests.m, test.m:
Preface error() messages with name of function when possible.
author | Rik <rik@octave.org> |
---|---|
date | Thu, 19 Nov 2015 14:17:45 -0800 (2015-11-19) |
parents | 8742e0b1cc49 |
children | c2d9556d51d0 |
line wrap: on
line diff
--- a/libinterp/dldfcn/symbfact.cc +++ b/libinterp/dldfcn/symbfact.cc @@ -221,16 +221,16 @@ CHOLMOD_NAME(etree) (Aup, Parent, cm); if (cm->status < CHOLMOD_OK) - error ("matrix corrupted"); + error ("symbfact: matrix corrupted"); if (CHOLMOD_NAME(postorder) (Parent, n, 0, Post, cm) != n) - error ("postorder failed"); + error ("symbfact: postorder failed"); CHOLMOD_NAME(rowcolcounts) (Alo, 0, 0, Parent, Post, 0, ColCount, First, Level, cm); if (cm->status < CHOLMOD_OK) - error ("matrix corrupted"); + error ("symbfact: matrix corrupted"); if (nargout > 4) {