From 68faa04aff73740d86dcdcdc66e91a4d7bbd1a4e Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Fri, 28 Apr 2017 09:46:10 -0700 Subject: Compiler warnings. --- src/misc/vec/vecStr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/misc/vec') diff --git a/src/misc/vec/vecStr.h b/src/misc/vec/vecStr.h index 04cd5da8..ef5e9a41 100644 --- a/src/misc/vec/vecStr.h +++ b/src/misc/vec/vecStr.h @@ -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] ); } -- cgit v1.2.3