From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:38682) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFow9-0002yf-I4 for qemu-devel@nongnu.org; Thu, 05 Apr 2012 11:49:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SFovw-0006nv-FI for qemu-devel@nongnu.org; Thu, 05 Apr 2012 11:49:22 -0400 Received: from mx1.redhat.com ([209.132.183.28]:19144) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SFovw-0006mq-6A for qemu-devel@nongnu.org; Thu, 05 Apr 2012 11:49:12 -0400 From: Kevin Wolf Date: Thu, 5 Apr 2012 17:51:50 +0200 Message-Id: <1333641144-13612-13-git-send-email-kwolf@redhat.com> In-Reply-To: <1333641144-13612-1-git-send-email-kwolf@redhat.com> References: <1333641144-13612-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH 12/46] qerror: fix QERR_PROPERTY_VALUE_OUT_OF_RANGE description List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org From: Stefan Hajnoczi Fix a typo in the description for QERR_PROPERTY_VALUE_OUT_OF_RANGE where "'" was used instead of ")". Signed-off-by: Stefan Hajnoczi Reviewed-by: Paolo Bonzini Signed-off-by: Kevin Wolf --- qerror.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/qerror.c b/qerror.c index 41c729a..1f565fc 100644 --- a/qerror.c +++ b/qerror.c @@ -243,7 +243,7 @@ static const QErrorStringTable qerror_table[] = { { .error_fmt = QERR_PROPERTY_VALUE_OUT_OF_RANGE, .desc = "Property '%(device).%(property)' doesn't take " - "value %(value) (minimum: %(min), maximum: %(max)'", + "value %(value) (minimum: %(min), maximum: %(max))", }, { .error_fmt = QERR_QGA_COMMAND_FAILED, -- 1.7.6.5