Skip to content
Snippets Groups Projects
Commit e95a0fff authored by Brad King's avatar Brad King
Browse files

COMP: Fix conversion warning.

parent ee3e583a
No related branches found
No related tags found
No related merge requests found
...@@ -2073,7 +2073,7 @@ int kwsysProcessComputeCommandLength(kwsysProcess* cp, ...@@ -2073,7 +2073,7 @@ int kwsysProcessComputeCommandLength(kwsysProcess* cp,
{ {
/* Treat the first argument as a verbatim command line. Use its /* Treat the first argument as a verbatim command line. Use its
length directly and add space for the null-terminator. */ length directly and add space for the null-terminator. */
length = strlen(*command)+1; length = (int)strlen(*command)+1;
} }
else else
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment