change more references to (f)printf to polarssl_(f)printf to allow overriding

This commit is contained in:
Rich Evans 2015-01-15 10:31:23 +00:00 committed by Paul Bakker
parent f4253c72f0
commit 920aa9c8ee
2 changed files with 2 additions and 2 deletions

View file

@ -172,7 +172,7 @@ $function_pre_code
$param_defs
if( cnt != $param_count )
{
fprintf( stderr, "\\nIncorrect argument count (%d != %d)\\n", cnt, $param_count );
polarssl_fprintf( stderr, "\\nIncorrect argument count (%d != %d)\\n", cnt, $param_count );
return( 2 );
}