Am 23.04.2012 22:54, schrieb Stefan Weil: > Cc: Kevin Wolf <kw...@redhat.com> > Signed-off-by: Stefan Weil <s...@weilnetz.de> > --- > block/qcow2.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/block/qcow2.c b/block/qcow2.c > index ad46c03..d03e31c 100644 > --- a/block/qcow2.c > +++ b/block/qcow2.c > @@ -182,7 +182,7 @@ static void cleanup_unknown_header_ext(BlockDriverState > *bs) > } > } > > -static void report_unsupported(BlockDriverState *bs, const char *fmt, ...) > +static void GCC_FMT_ATTR(2, 3) report_unsupported(BlockDriverState *bs, > const char *fmt, ...) > { > char msg[64]; > va_list ap;
Thanks, fixed to have not more than 80 characters per line and applied to the block branch. Kevin