Print-out for char arrays.

This commit is contained in:
Alan Mishchenko 2015-07-12 20:39:36 -07:00
parent 2cb6908fc6
commit 6fa0784abe
1 changed files with 2 additions and 2 deletions

View File

@ -589,12 +589,12 @@ static inline char Vec_StrPop( Vec_Str_t * p )
SeeAlso []
***********************************************************************/
static inline Vec_StrIntPrint( Vec_Str_t * p )
static inline void Vec_StrIntPrint( Vec_Str_t * p )
{
int i;
printf( "Vector has %d entries: {", Vec_StrSize(p) );
for ( i = 0; i < Vec_StrSize(p); i++ )
printf( " %d", Vec_StrEntry(p, i) );
printf( " %d", (int)Vec_StrEntry(p, i) );
printf( " }\n" );
}