Shahar Havivi <shah...@redhat.com> writes: > gcc 4.4.1 produce a warning 'format not a string literal and no format > arguments' > > Signed-off-by: Shahar Havivi <shah...@redhat.com> > --- > qemu-error.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/qemu-error.c b/qemu-error.c > index 5d5fe37..14ec14f 100644 > --- a/qemu-error.c > +++ b/qemu-error.c > @@ -188,7 +188,7 @@ void error_print_loc(void) > error_printf(" "); > break; > default: > - error_printf(sep); > + error_printf("%s", sep); > } > }
Fair enough.