On Fri, Jul 7, 2017 at 5:48 AM, Markus Armbruster <arm...@redhat.com> wrote: > Alistair Francis <alistair.fran...@xilinx.com> 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 found using this regex expression: >> error_report.*[Ww]arning: >> and replaced with: >> warn_report(" >> >> Signed-off-by: Alistair Francis <alistair.fran...@xilinx.com> >> Suggested-by: Thomas Huth <th...@redhat.com> > > Doesn't compile. Moreover, you obviously changed more than just lines > matching the regexp you quoted. > > To ease review, I please split the patch as follows: > > * First patch: > > sed -i 's/error_report("warning: \([^"]*"\)/warn_report("\1/i' ... > > plus indentation fixups. Put exact sed command (or whatever else you > use) in the commit message. > > * Second patch with additional conversions.
The only additional conversion is fixing the test cases, which I really don't want to have in a separate patch because then this patch fails make check. Thanks, Alistair > > This way the bulk of the changes is mechanical, and the non-mechanical > changes don't get lost in the sea of mechanical ones.