Re: [Qemu-devel] [PATCH v2 3/8] Convert error_report() to warn_report()

2017-07-10 Thread Markus Armbruster
Alistair Francis writes: > Convert all uses of error_report("[Ww]arning:"... to use warn_report() > instead. This helps standardise on a single method of printing warnings > to the user. > > All of the warnings were changed using this command: > find ./* -type f -exec sed -i \ > 's|error_

Re: [Qemu-devel] [PATCH v2 3/8] Convert error_report() to warn_report()

2017-07-09 Thread Max Reitz
On 2017-07-08 01:21, Alistair Francis wrote: > Convert all uses of error_report("[Ww]arning:"... to use warn_report() > instead. This helps standardise on a single method of printing warnings > to the user. > > All of the warnings were changed using this command: > find ./* -type f -exec sed -

Re: [Qemu-devel] [PATCH v2 3/8] Convert error_report() to warn_report()

2017-07-07 Thread Peter.Chubb
> "Alistair" == Alistair Francis writes: Alistair> Convert all uses of error_report("[Ww]arning:"... to use Alistair> warn_report() instead. This helps standardise on a single Alistair> method of printing warnings to the user. Alistair> All of the warnings were changed using this command: fi

[Qemu-devel] [PATCH v2 3/8] Convert error_report() to warn_report()

2017-07-07 Thread Alistair Francis
Convert all uses of error_report("[Ww]arning:"... to use warn_report() instead. This helps standardise on a single method of printing warnings to the user. All of the warnings were changed using this command: find ./* -type f -exec sed -i \ 's|error_report.*[Ww]arning: |warn_report("|g' {}