All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yang Hongyang <yanghy@cn.fujitsu.com>
To: xen-devel@lists.xensource.com
Subject: [PATCH]xl:Remove unused variable verbose in info function
Date: Tue, 27 Apr 2010 15:05:48 +0800	[thread overview]
Message-ID: <4BD68CCC.9000401@cn.fujitsu.com> (raw)

Remove unused variable verbose in info function

Signed-off-by: Yang Hongyang <yanghy@cn.fujitsu.com>

diff -r c87ec146229a tools/libxl/xl.c
--- a/tools/libxl/xl.c	Fri Apr 23 15:04:26 2010 +0100
+++ b/tools/libxl/xl.c	Tue Apr 27 23:02:22 2010 +0800
@@ -2720,7 +2720,7 @@
     return;
 }
 
-void info(int verbose)
+void info(void)
 {
     output_nodeinfo();
 
@@ -2735,9 +2735,8 @@
 
 void main_info(int argc, char **argv)
 {
-    int opt, verbose;
+    int opt;
 
-    verbose = 0;
     while ((opt = getopt(argc, argv, "h")) != -1) {
         switch (opt) {
         case 'h':
@@ -2749,7 +2748,7 @@
         }
     }
 
-    info(verbose);
+    info();
     exit(0);
 }
 

-- 
Regards
Yang Hongyang

                 reply	other threads:[~2010-04-27  7:05 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4BD68CCC.9000401@cn.fujitsu.com \
    --to=yanghy@cn.fujitsu.com \
    --cc=xen-devel@lists.xensource.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.