From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yang Hongyang Subject: [PATCH]xl:Remove unused variable verbose in info function Date: Tue, 27 Apr 2010 15:05:48 +0800 Message-ID: <4BD68CCC.9000401@cn.fujitsu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org Remove unused variable verbose in info function Signed-off-by: Yang Hongyang 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