From a48ab3e252e7dcd7e8c6362942fd26e72c932314 Mon Sep 17 00:00:00 2001 From: Tom Vercauteren Date: Mon, 17 Feb 2020 10:02:32 +0000 Subject: [PATCH] fixed ordered comparison between pointer and zero --- Source/lsqrBase.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/lsqrBase.cxx b/Source/lsqrBase.cxx index 86eaffe..4f7b9c0 100644 --- a/Source/lsqrBase.cxx +++ b/Source/lsqrBase.cxx @@ -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;