diff options
author | Brad King <brad.king@kitware.com> | 2022-02-22 17:58:16 +0000 |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-02-22 12:58:22 -0500 |
commit | 6068143fe116e0a03c40341d0a7c50def93442cb (patch) | |
tree | 41c4c976fac52a1348d767eba8221eda5d368e53 /Source | |
parent | 4878ad8f391cf67193e9921ecde1f9bc8c7e81cf (diff) | |
parent | f634e77b2e9b854d9a2861499c691065d8f23653 (diff) | |
download | cmake-6068143fe116e0a03c40341d0a7c50def93442cb.tar.gz |
Merge topic 'update-kwsys'
f634e77b2e Merge branch 'upstream-KWSys' into update-kwsys
8d9ced350d KWSys 2022-02-18 (599dc923)
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !7004
Diffstat (limited to 'Source')
-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 19bf982df6..22cbf06427 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 e97973ecc4..17e15075bf 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"); |