From f5b56ce3463d3e44aadc827ab4a6ec726687a233 Mon Sep 17 00:00:00 2001 From: Frits van Bommel Date: Thu, 7 May 2009 15:33:06 +0200 Subject: [PATCH] Fix typo in function name --- gen/linker.cpp | 2 +- gen/linker.h | 2 +- gen/main.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gen/linker.cpp b/gen/linker.cpp index 043c8ba524..27a30eac92 100644 --- a/gen/linker.cpp +++ b/gen/linker.cpp @@ -363,7 +363,7 @@ void deleteExecutable() ////////////////////////////////////////////////////////////////////////////// -int runExectuable() +int runExecutable() { assert(!gExePath.isEmpty()); assert(gExePath.isValid()); diff --git a/gen/linker.h b/gen/linker.h index b3ed3e5977..0977f556b6 100644 --- a/gen/linker.h +++ b/gen/linker.h @@ -41,6 +41,6 @@ void deleteExecutable(); * 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 --git a/gen/main.cpp b/gen/main.cpp index 6a870a068d..92ae408de6 100644 --- a/gen/main.cpp +++ b/gen/main.cpp @@ -908,7 +908,7 @@ int main(int argc, char** argv) { if (!status) { - status = runExectuable(); + status = runExecutable(); /* Delete .obj files and .exe file */