diff options
author | marha <marha@users.sourceforge.net> | 2011-02-02 19:02:13 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-02-02 19:02:13 +0000 |
commit | 4ac42e387637b2e51a39aa39aa69e2ff97ba4c38 (patch) | |
tree | 5c1cb1ea3a3e9c48fe368cd07432c8354b70cfb7 /tools/mhmake/src | |
parent | 749d0082379b4e508c0890580085d9a7531204ff (diff) | |
download | vcxsrv-4ac42e387637b2e51a39aa39aa69e2ff97ba4c38.tar.gz vcxsrv-4ac42e387637b2e51a39aa39aa69e2ff97ba4c38.tar.bz2 vcxsrv-4ac42e387637b2e51a39aa39aa69e2ff97ba4c38.zip |
Solved compile error
Diffstat (limited to 'tools/mhmake/src')
-rw-r--r-- | tools/mhmake/src/util.cpp | 2 | ||||
-rw-r--r-- | tools/mhmake/src/util.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/mhmake/src/util.cpp b/tools/mhmake/src/util.cpp index f678e7adf..1f531e493 100644 --- a/tools/mhmake/src/util.cpp +++ b/tools/mhmake/src/util.cpp @@ -747,7 +747,7 @@ void loadedmakefile::LoadMakefile() }
/*****************************************************************************/
-bool MakeDirs(const fileinfo *pDir)
+bool MakeDirs(fileinfo *pDir)
{
fileinfo *pParentDir=pDir->GetDir();
if (!pParentDir->GetDate().DoesExist())
diff --git a/tools/mhmake/src/util.h b/tools/mhmake/src/util.h index fea80c070..cb28ab80b 100644 --- a/tools/mhmake/src/util.h +++ b/tools/mhmake/src/util.h @@ -232,7 +232,7 @@ public: extern LOADEDMAKEFILES g_LoadedMakefiles;
-bool MakeDirs(const fileinfo *pDir); // Creates a directory tree
+bool MakeDirs(fileinfo *pDir); // Creates a directory tree
void DumpVarsAndRules();
#endif
|