mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-05 01:20:51 +03:00
Fix typo in function name
This commit is contained in:
parent
b6ad8b69ab
commit
f5b56ce346
3 changed files with 3 additions and 3 deletions
|
@ -363,7 +363,7 @@ void deleteExecutable()
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
int runExectuable()
|
int runExecutable()
|
||||||
{
|
{
|
||||||
assert(!gExePath.isEmpty());
|
assert(!gExePath.isEmpty());
|
||||||
assert(gExePath.isValid());
|
assert(gExePath.isValid());
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue