server: Fix string format warning.

This commit is contained in:
Vincent Povirk 2008-12-04 22:02:35 -06:00 committed by Alexandre Julliard
parent 479f5a1b21
commit 8b49ecc3d8
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ static void dump_uints( const int *ptr, int len )
static void dump_timeout( const timeout_t *time )
{
fprintf( stderr, get_timeout_str(*time) );
fputs( get_timeout_str(*time), stderr );
}
static void dump_file_pos( const file_pos_t *pos )