COMP: Fix conversion warning.
This commit is contained in:
parent
c8f35fc4ef
commit
f26a0302be
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue