From 6b08b83d892672f0a5849af71441cb06dc2b45e8 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 10 May 2002 08:54:49 -0400 Subject: [PATCH] ERR: Added variable initializer. --- Source/cmSystemTools.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 5accbaae7..43924b6f2 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -844,7 +844,7 @@ void cmSystemTools::GetArguments(std::string& line, while(!done) { std::string arg; - std::string::size_type endpos; + std::string::size_type endpos=0; bool foundQuoted = quotedArgument.find(line.c_str()); bool foundNormal = normalArgument.find(line.c_str());