diff options
author | marha <marha@users.sourceforge.net> | 2010-02-25 11:16:55 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-02-25 11:16:55 +0000 |
commit | 0235891665ad311e1f81d1b0f003f433b4af4cbb (patch) | |
tree | 26f78cd64df8bbedddf70b62ee06550dd7b6c0b9 /tools/mhmake/src/mhmakefileparser.h | |
parent | c970823c93ff7478877d7df9c66b5032e744dc19 (diff) | |
download | vcxsrv-0235891665ad311e1f81d1b0f003f433b4af4cbb.tar.gz vcxsrv-0235891665ad311e1f81d1b0f003f433b4af4cbb.tar.bz2 vcxsrv-0235891665ad311e1f81d1b0f003f433b4af4cbb.zip |
Solved problem when path environment variable was larger then 1024 bytes
Diffstat (limited to 'tools/mhmake/src/mhmakefileparser.h')
-rw-r--r-- | tools/mhmake/src/mhmakefileparser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mhmake/src/mhmakefileparser.h b/tools/mhmake/src/mhmakefileparser.h index 43bcad538..b37e96466 100644 --- a/tools/mhmake/src/mhmakefileparser.h +++ b/tools/mhmake/src/mhmakefileparser.h @@ -355,7 +355,7 @@ public: mh_pid_t EchoCommand(const string &Params) const;
string SearchCommand(const string &Command, const string &Extension="") const;
const string &GetPythonExe() const;
- int SearchPath(void *NotUsed, const char *szCommand, const char *pExt, int Len, char *szFullCommand,char **pFilePart) const;
+ int SearchPath(const char *szCommand, const char *pExt, int Len, char *szFullCommand,char **pFilePart) const;
mh_pid_t OsExeCommand(const string &Command, const string &Params, bool IgnoreError, string *pOutput) const;
};
|