# HG changeset patch # User Frits van Bommel # Date 1241703186 -7200 # Node ID 2bebd938548f4911789c58a61b3aace3bff6deeb # Parent c8b9406d84ca1f961f52e509206ff6892b8c7985 Fix typo in function name diff -r c8b9406d84ca -r 2bebd938548f gen/linker.cpp --- a/gen/linker.cpp Thu May 07 21:07:50 2009 +0200 +++ b/gen/linker.cpp Thu May 07 15:33:06 2009 +0200 @@ -363,7 +363,7 @@ ////////////////////////////////////////////////////////////////////////////// -int runExectuable() +int runExecutable() { assert(!gExePath.isEmpty()); assert(gExePath.isValid()); diff -r c8b9406d84ca -r 2bebd938548f gen/linker.h --- a/gen/linker.h Thu May 07 21:07:50 2009 +0200 +++ b/gen/linker.h Thu May 07 15:33:06 2009 +0200 @@ -41,6 +41,6 @@ * Runs the executable that was previously linked with linkExecutable. * @return the return status of the executable. */ -int runExectuable(); +int runExecutable(); #endif // LDC_GEN_LINKER_H diff -r c8b9406d84ca -r 2bebd938548f gen/main.cpp --- a/gen/main.cpp Thu May 07 21:07:50 2009 +0200 +++ b/gen/main.cpp Thu May 07 15:33:06 2009 +0200 @@ -908,7 +908,7 @@ { if (!status) { - status = runExectuable(); + status = runExecutable(); /* Delete .obj files and .exe file */