Compiler warnings.

This commit is contained in:
Alan Mishchenko
2017-04-28 09:46:10 -07:00
parent 1faab72a6c
commit 68faa04aff
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -671,7 +671,7 @@ static inline void Vec_StrPrintNumStar( Vec_Str_t * p, int Num, int nDigits )
***********************************************************************/
static inline void Vec_StrPrintStr( Vec_Str_t * p, const char * pStr )
{
int i, Length = strlen(pStr);
int i, Length = (int)strlen(pStr);
for ( i = 0; i < Length; i++ )
Vec_StrPush( p, pStr[i] );
}