summaryrefslogtreecommitdiffstats
path: root/src/misc/vec
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2017-04-28 09:46:10 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2017-04-28 09:46:10 -0700
commit68faa04aff73740d86dcdcdc66e91a4d7bbd1a4e (patch)
treecaa05ff420ad07353df3c0c163318d77b1053860 /src/misc/vec
parent1faab72a6c4433027e691fb8547a994f56993f67 (diff)
downloadabc-68faa04aff73740d86dcdcdc66e91a4d7bbd1a4e.tar.gz
abc-68faa04aff73740d86dcdcdc66e91a4d7bbd1a4e.tar.bz2
abc-68faa04aff73740d86dcdcdc66e91a4d7bbd1a4e.zip
Compiler warnings.
Diffstat (limited to 'src/misc/vec')
-rw-r--r--src/misc/vec/vecStr.h2
1 files changed, 1 insertions, 1 deletions
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] );
}