fix compiler warning

This commit is contained in:
mwells 2014-01-02 01:35:52 -07:00
parent 7df2111ceb
commit 9bf49884b9

View File

@ -867,7 +867,7 @@ int main ( int argc , char *argv[] ) {
); );
SafeBuf sb2; SafeBuf sb2;
sb2.brify2 ( sb.getBufStart() , 60 , "\n\t" , false ); sb2.brify2 ( sb.getBufStart() , 60 , "\n\t" , false );
fprintf(stdout,sb2.getBufStart()); fprintf(stdout,"%s",sb2.getBufStart());
// disable printing of used memory // disable printing of used memory
g_mem.m_used = 0; g_mem.m_used = 0;
return 0; return 0;