diff mbox

Fix gcc warning 'format not a string literal and no format arguments'

Message ID 20100319111123.GA16049@redhat.com
State New
Headers show

Commit Message

Shahar Havivi March 19, 2010, 11:11 a.m. UTC
gcc 4.4.1 produce a warning 'format not a string literal and no format 
arguments'

Signed-off-by: Shahar Havivi <shaharh@redhat.com>
---
 qemu-error.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Markus Armbruster March 19, 2010, 12:29 p.m. UTC | #1
Shahar Havivi <shaharh@redhat.com> writes:

> gcc 4.4.1 produce a warning 'format not a string literal and no format 
> arguments'
>
> Signed-off-by: Shahar Havivi <shaharh@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.
diff mbox

Patch

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);
     }
 }