Skip to content

Commit

Permalink
fixed ordered comparison between pointer and zero
Browse files Browse the repository at this point in the history
  • Loading branch information
tvercaut committed Feb 17, 2020
1 parent 4cda81e commit a48ab3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/lsqrBase.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ Solve( unsigned int m, unsigned int n, const double * b, double * x )
// See if it is time to print something.
//----------------------------------------------------------------
bool prnt = false;
if (nout > 0)
if (this->nout)
{
if (n <= 40) prnt = true;
if (this->itn <= 10) prnt = true;
Expand Down

0 comments on commit a48ab3e

Please sign in to comment.