From a179cc956a0087f72b2cb75914df58344024c680 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Wed, 12 May 2010 10:22:55 -0400 Subject: [PATCH] Remove conversion warning. --- Source/cmDocumentationFormatterText.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmDocumentationFormatterText.cxx b/Source/cmDocumentationFormatterText.cxx index 078b8909d..0b04b73d2 100644 --- a/Source/cmDocumentationFormatterText.cxx +++ b/Source/cmDocumentationFormatterText.cxx @@ -96,7 +96,7 @@ void cmDocumentationFormatterText::PrintColumn(std::ostream& os, { // Print text arranged in an indented column of fixed witdh. const char* l = text; - int column = 0; + long column = 0; bool newSentence = false; bool firstLine = true; int width = this->TextWidth - static_cast(strlen(this->TextIndent));