aboutsummaryrefslogtreecommitdiff
path: root/tools/mhmake/src/mhmakefileparser.cpp
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2010-11-01 15:49:36 +0000
committermarha <marha@users.sourceforge.net>2010-11-01 15:49:36 +0000
commita0fe511b67d36291e2e2d409bbdb7ac46b860478 (patch)
tree41c1075e74eb3acd83af611ceffb8673772a75f9 /tools/mhmake/src/mhmakefileparser.cpp
parentc3d55347b14c80f553ab8c487baded1a44acf68c (diff)
downloadvcxsrv-a0fe511b67d36291e2e2d409bbdb7ac46b860478.tar.gz
vcxsrv-a0fe511b67d36291e2e2d409bbdb7ac46b860478.tar.bz2
vcxsrv-a0fe511b67d36291e2e2d409bbdb7ac46b860478.zip
Solved release compilation error
Diffstat (limited to 'tools/mhmake/src/mhmakefileparser.cpp')
-rw-r--r--tools/mhmake/src/mhmakefileparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mhmake/src/mhmakefileparser.cpp b/tools/mhmake/src/mhmakefileparser.cpp
index 38c5cd3ac..f281bc7dd 100644
--- a/tools/mhmake/src/mhmakefileparser.cpp
+++ b/tools/mhmake/src/mhmakefileparser.cpp
@@ -295,7 +295,7 @@ string mhmakefileparser::ExpandMacro(const string &Expr, bool &Recurse) const
throw string("Unknown function specified in macro: ")+Func;
}
#else
- return (this->*pFunc)(Arg);
+ return (this->*pFunc)(Arg, &Expr);
#endif
}
else