STYLE: fix compiler warning

This commit is contained in:
Bill Hoffman 2008-09-24 09:57:52 -04:00
parent 5f57efb417
commit 302aadadb3
2 changed files with 2 additions and 3 deletions

View File

@ -881,8 +881,7 @@ int cmCPackGenerator::DoPackage()
} }
//---------------------------------------------------------------------- //----------------------------------------------------------------------
int cmCPackGenerator::Initialize(const char* name, cmMakefile* mf, int cmCPackGenerator::Initialize(const char* name, cmMakefile* mf)
const char* argv0)
{ {
this->MakefileMap = mf; this->MakefileMap = mf;
this->Name = name; this->Name = name;

View File

@ -73,7 +73,7 @@ public:
/** /**
* Initialize generator * Initialize generator
*/ */
int Initialize(const char* name, cmMakefile* mf, const char* argv0); int Initialize(const char* name, cmMakefile* mf);
/** /**
* Construct generator * Construct generator