changeset 1313:2bebd938548f

Fix typo in function name
author Frits van Bommel <fvbommel wxs.nl>
date Thu, 07 May 2009 15:33:06 +0200
parents c8b9406d84ca
children acc5d68a21d3
files gen/linker.cpp gen/linker.h gen/main.cpp
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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());
--- 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
--- 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
                  */