Commit 8b49ecc3 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

server: Fix string format warning.

parent 479f5a1b
...@@ -67,7 +67,7 @@ static void dump_uints( const int *ptr, int len ) ...@@ -67,7 +67,7 @@ static void dump_uints( const int *ptr, int len )
static void dump_timeout( const timeout_t *time ) 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 ) static void dump_file_pos( const file_pos_t *pos )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment