From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GOLQ8-00026T-5g for qemu-devel@nongnu.org; Fri, 15 Sep 2006 17:40:24 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GOLQ6-00024U-NE for qemu-devel@nongnu.org; Fri, 15 Sep 2006 17:40:23 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GOLQ6-00024E-Ep for qemu-devel@nongnu.org; Fri, 15 Sep 2006 17:40:22 -0400 Received: from [212.227.126.177] (helo=moutng.kundenserver.de) by monty-python.gnu.org with esmtp (Exim 4.52) id 1GOLSL-0002R9-TH for qemu-devel@nongnu.org; Fri, 15 Sep 2006 17:42:42 -0400 Received: from localhost ([127.0.0.1]) by localhost.localdomain with esmtp (Exim 4.62) (envelope-from ) id 1GOLQ3-0001fW-8I for qemu-devel@nongnu.org; Fri, 15 Sep 2006 23:40:19 +0200 Message-ID: <450B1DC2.7030205@mail.berlios.de> Date: Fri, 15 Sep 2006 23:40:18 +0200 From: Stefan Weil MIME-Version: 1.0 Subject: [Qemu-devel] [PATCH] Fixed help output for info command Content-Type: multipart/mixed; boundary="------------060609090505040101030202" Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This is a multi-part message in MIME format. --------------060609090505040101030202 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit This small patch adds missing initial values for the info command structure... Regards Stefan --------------060609090505040101030202 Content-Type: text/plain; name="qemu.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="qemu.patch" Index: monitor.c =================================================================== RCS file: /sources/qemu/qemu/monitor.c,v retrieving revision 1.56 diff -u -b -B -u -r1.56 monitor.c --- monitor.c 5 Aug 2006 21:31:00 -0000 1.56 +++ monitor.c 15 Sep 2006 21:33:43 -0000 @@ -1230,9 +1230,9 @@ { "profile", "", do_info_profile, "", "show profiling information", }, { "capture", "", do_info_capture, - "show capture information" }, + "", "show capture information" }, { "snapshots", "", do_info_snapshots, - "show the currently saved VM snapshots" }, + "", "show the currently saved VM snapshots" }, { NULL, NULL, }, }; --------------060609090505040101030202--