From 3f1121f72260789dd61ce947e208aa182341859e Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Fri, 8 Oct 2010 13:49:39 -0400 Subject: [PATCH] Use a long int since Line is a long as well --- Source/cmMakefile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 15c5370db..45599d7ae 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -1779,7 +1779,7 @@ void cmMakefile::CheckForUnused(const char* reason, const char* name) const if (this->WarnUnused && !this->VariableUsed(name)) { cmStdString path; - int line; + long line; if (this->CallStack.size()) { const cmListFileContext* file = this->CallStack.back().Context;