1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-14 02:08:27 +08:00

KWSys 2025-08-08 (2c189f30)

Code extracted from:

    https://gitlab.kitware.com/utils/kwsys.git

at commit 2c189f30f633a0e40b1bf4c3861fae4ca167358a (master).

Upstream Shortlog
-----------------

Brad King (1):
      7322a140 Process: Remove stray newline in GetExceptionString result
This commit is contained in:
KWSys Upstream
2025-08-08 08:18:30 -04:00
committed by Brad King
parent 278ce30d07
commit bbb2370359

View File

@@ -2145,7 +2145,7 @@ static void kwsysProcessSetExitExceptionByIndex(kwsysProcess* cp, int code,
default:
cp->ProcessResults[idx].ExitException = kwsysProcess_Exception_Other;
snprintf(cp->ProcessResults[idx].ExitExceptionString,
KWSYSPE_PIPE_BUFFER_SIZE, "Exit code 0x%x\n", code);
KWSYSPE_PIPE_BUFFER_SIZE, "Exit code 0x%x", code);
break;
}
}