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

2017-07-31 Thread Vladimir Sementsov-Ogievskiy
31.07.2017 19:15, Eric Blake wrote: On 07/31/2017 11:01 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

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

2017-07-31 Thread Eric Blake
On 07/31/2017 11:01 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 cas

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

2017-07-31 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 before '#' > find . -name trace-events | xarg