Fix typo in function name

This commit is contained in:
Frits van Bommel 2009-05-07 15:33:06 +02:00
parent b6ad8b69ab
commit f5b56ce346
3 changed files with 3 additions and 3 deletions

View file

@ -363,7 +363,7 @@ void deleteExecutable()
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
int runExectuable() int runExecutable()
{ {
assert(!gExePath.isEmpty()); assert(!gExePath.isEmpty());
assert(gExePath.isValid()); assert(gExePath.isValid());

View file

@ -41,6 +41,6 @@ void deleteExecutable();
* Runs the executable that was previously linked with linkExecutable. * Runs the executable that was previously linked with linkExecutable.
* @return the return status of the executable. * @return the return status of the executable.
*/ */
int runExectuable(); int runExecutable();
#endif // LDC_GEN_LINKER_H #endif // LDC_GEN_LINKER_H

View file

@ -908,7 +908,7 @@ int main(int argc, char** argv)
{ {
if (!status) if (!status)
{ {
status = runExectuable(); status = runExecutable();
/* Delete .obj files and .exe file /* Delete .obj files and .exe file
*/ */