Ticket #896: stderr.patch
File stderr.patch, 417 bytes (added by 09BKyfYz0mi3WBjXLUV1VWo, 14 years ago) |
---|
-
utils.c
279 279 { 280 280 if( fp == NULL ) 281 281 fp = stderr; 282 fprintf( stderr, "%s\n", text );282 fprintf( fp, "%s\n", text ); 283 283 tr_free( text ); 284 284 fflush( fp ); 285 285 }