mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-24 00:33:12 +01:00
Fix typo in function name
This commit is contained in:
@@ -363,7 +363,7 @@ void deleteExecutable()
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
int runExectuable()
|
||||
int runExecutable()
|
||||
{
|
||||
assert(!gExePath.isEmpty());
|
||||
assert(gExePath.isValid());
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -908,7 +908,7 @@ int main(int argc, char** argv)
|
||||
{
|
||||
if (!status)
|
||||
{
|
||||
status = runExectuable();
|
||||
status = runExecutable();
|
||||
|
||||
/* Delete .obj files and .exe file
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user