Re: [Qemu-devel] [PATCH v2 2/4] trace-events: fix code style: %# -> 0x%

2017-07-31 Thread Eric Blake
On 07/29/2017 08:11 AM, Vladimir Sementsov-Ogievskiy wrote: > In trace format '#' flag of printf is forbidden. Fix it to '0x%'. > > This patch is created by the following: > > check that we have a problem >> find . -name trace-events | xargs grep '%#' | wc -l > 56 > > check that there are no

Re: [Qemu-devel] [PATCH v2 2/4] trace-events: fix code style: %# -> 0x%

2017-07-31 Thread Stefan Hajnoczi
On Sat, Jul 29, 2017 at 04:11:57PM +0300, Vladimir Sementsov-Ogievskiy wrote: > In trace format '#' flag of printf is forbidden. Fix it to '0x%'. > > This patch is created by the following: > > check that we have a problem > > find . -name trace-events | xargs grep '%#' | wc -l > 56 > > check

[Qemu-devel] [PATCH v2 2/4] trace-events: fix code style: %# -> 0x%

2017-07-29 Thread Vladimir Sementsov-Ogievskiy
In trace format '#' flag of printf is forbidden. Fix it to '0x%'. This patch is created by the following: check that we have a problem > find . -name trace-events | xargs grep '%#' | wc -l 56 check that there are no cases with additional printf flags > find . -name trace-events | xargs grep