diff options
author | Brad King <brad.king@kitware.com> | 2022-02-18 14:20:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2022-02-18 14:20:57 (GMT) |
commit | f634e77b2e9b854d9a2861499c691065d8f23653 (patch) | |
tree | 15dc218e0aa8f96d6b8dd4c124fab8e70c14feb5 /Source/kwsys | |
parent | 176407736ec13715f42d6a696daa5f4779eeec4c (diff) | |
parent | 8d9ced350d43d0925648a73a9435b1a59ec51e5a (diff) | |
download | CMake-f634e77b2e9b854d9a2861499c691065d8f23653.zip CMake-f634e77b2e9b854d9a2861499c691065d8f23653.tar.gz CMake-f634e77b2e9b854d9a2861499c691065d8f23653.tar.bz2 |
Merge branch 'upstream-KWSys' into update-kwsys
# By KWSys Upstream
* upstream-KWSys:
KWSys 2022-02-18 (599dc923)
Diffstat (limited to 'Source/kwsys')
-rw-r--r-- | Source/kwsys/ProcessUNIX.c | 2 | ||||
-rw-r--r-- | Source/kwsys/ProcessWin32.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/kwsys/ProcessUNIX.c b/Source/kwsys/ProcessUNIX.c index 19bf982..22cbf06 100644 --- a/Source/kwsys/ProcessUNIX.c +++ b/Source/kwsys/ProcessUNIX.c @@ -1906,7 +1906,7 @@ static void kwsysProcessDestroy(kwsysProcess* cp) (errno == EINTR)) { } if (result > 0) { - /* This child has termianted. */ + /* This child has terminated. */ cp->ForkPIDs[i] = 0; if (--cp->CommandsLeft == 0) { /* All children have terminated. Close the signal pipe diff --git a/Source/kwsys/ProcessWin32.c b/Source/kwsys/ProcessWin32.c index e97973e..17e1507 100644 --- a/Source/kwsys/ProcessWin32.c +++ b/Source/kwsys/ProcessWin32.c @@ -2119,7 +2119,7 @@ static void kwsysProcessSetExitExceptionByIndex(kwsysProcess* cp, int code, KWSYSPE_CASE(Fault, "In-page error"); break; case STATUS_INVALID_HANDLE: - KWSYSPE_CASE(Fault, "Invalid hanlde"); + KWSYSPE_CASE(Fault, "Invalid handle"); break; case STATUS_NONCONTINUABLE_EXCEPTION: KWSYSPE_CASE(Fault, "Noncontinuable exception"); |