qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 1/4] monitor: Remove unused variable


From: Luiz Capitulino
Subject: [Qemu-devel] [PATCH 1/4] monitor: Remove unused variable
Date: Tue, 9 Jun 2009 18:20:49 -0300

The local pointer 'q' is not used by monitor_handle_command().

Signed-off-by: Luiz Capitulino <address@hidden>
---
 monitor.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/monitor.c b/monitor.c
index 7620bde..11716de 100644
--- a/monitor.c
+++ b/monitor.c
@@ -2389,7 +2389,6 @@ static int default_fmt_size = 4;
 static void monitor_handle_command(Monitor *mon, const char *cmdline)
 {
     const char *p, *pstart, *typestr;
-    char *q;
     int c, nb_args, len, i, has_arg;
     const mon_cmd_t *cmd;
     char cmdname[256];
@@ -2415,7 +2414,6 @@ static void monitor_handle_command(Monitor *mon, const 
char *cmdline)
 
     /* extract the command name */
     p = cmdline;
-    q = cmdname;
     while (qemu_isspace(*p))
         p++;
     if (*p == '\0')
-- 
1.6.3.GIT





reply via email to

[Prev in Thread] Current Thread [Next in Thread]