diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2017-04-28 09:46:10 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2017-04-28 09:46:10 -0700 |
commit | 68faa04aff73740d86dcdcdc66e91a4d7bbd1a4e (patch) | |
tree | caa05ff420ad07353df3c0c163318d77b1053860 /src/misc/vec | |
parent | 1faab72a6c4433027e691fb8547a994f56993f67 (diff) | |
download | abc-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.h | 2 |
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] ); } |