From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=47606 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OqLIv-0007gf-Qz for qemu-devel@nongnu.org; Tue, 31 Aug 2010 03:30:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OqLIu-0003mS-Sq for qemu-devel@nongnu.org; Tue, 31 Aug 2010 03:30:49 -0400 Received: from mx1.redhat.com ([209.132.183.28]:20495) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OqLIu-0003mL-MW for qemu-devel@nongnu.org; Tue, 31 Aug 2010 03:30:48 -0400 From: Jes.Sorensen@redhat.com Date: Tue, 31 Aug 2010 09:30:35 +0200 Message-Id: <1283239838-20349-4-git-send-email-Jes.Sorensen@redhat.com> In-Reply-To: <1283239838-20349-1-git-send-email-Jes.Sorensen@redhat.com> References: <1283239838-20349-1-git-send-email-Jes.Sorensen@redhat.com> Subject: [Qemu-devel] [PATCH 3/6] Fix repeated typo: was "end if list" instead of "end of list" List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: blauwirbel@gmail.com, Jes.Sorensen@redhat.com From: Jes Sorensen Signed-off-by: Jes Sorensen --- qemu-config.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/qemu-config.c b/qemu-config.c index 3abe655..1efdbec 100644 --- a/qemu-config.c +++ b/qemu-config.c @@ -80,7 +80,7 @@ static QemuOptsList qemu_drive_opts = { .name = "readonly", .type = QEMU_OPT_BOOL, }, - { /* end if list */ } + { /* end of list */ } }, }; @@ -147,7 +147,7 @@ static QemuOptsList qemu_chardev_opts = { .name = "signal", .type = QEMU_OPT_BOOL, }, - { /* end if list */ } + { /* end of list */ } }, }; @@ -203,7 +203,7 @@ static QemuOptsList qemu_device_opts = { * sanity checking will happen later * when setting device properties */ - { /* end if list */ } + { /* end of list */ } }, }; @@ -247,7 +247,7 @@ static QemuOptsList qemu_rtc_opts = { .name = "driftfix", .type = QEMU_OPT_STRING, }, - { /* end if list */ } + { /* end of list */ } }, }; @@ -265,7 +265,7 @@ static QemuOptsList qemu_global_opts = { .name = "value", .type = QEMU_OPT_STRING, }, - { /* end if list */ } + { /* end of list */ } }, }; @@ -284,7 +284,7 @@ static QemuOptsList qemu_mon_opts = { .name = "default", .type = QEMU_OPT_BOOL, }, - { /* end if list */ } + { /* end of list */ } }, }; -- 1.7.2.2