server: Fix string format warning.
authorVincent Povirk <madewokherd+d41d@gmail.com>
Fri, 5 Dec 2008 04:02:35 +0000 (22:02 -0600)
committerAlexandre Julliard <julliard@winehq.org>
Fri, 5 Dec 2008 11:31:45 +0000 (12:31 +0100)
server/trace.c

index dfbddacbd2975000b82df5498d8b082ce7b5922d..edb5440ceddf0fc8e14e8cf1d0b48dc56134cb79 100644 (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 )