From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:34489) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SztFX-000810-In for qemu-devel@nongnu.org; Fri, 10 Aug 2012 13:43:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SztFV-0001N6-HT for qemu-devel@nongnu.org; Fri, 10 Aug 2012 13:43:51 -0400 Received: from mx1.redhat.com ([209.132.183.28]:29798) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SztFU-0001My-UC for qemu-devel@nongnu.org; Fri, 10 Aug 2012 13:43:49 -0400 From: Luiz Capitulino Date: Fri, 10 Aug 2012 14:43:40 -0300 Message-Id: <1344620653-29067-3-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1344620653-29067-1-git-send-email-lcapitulino@redhat.com> References: <1344620653-29067-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH 02/35] qerror: QERR_AMBIGUOUS_PATH: drop %(object) from human msg List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, aliguori@us.ibm.com, armbru@redhat.com, mdroth@linux.vnet.ibm.com, pbonzini@redhat.com, eblake@redhat.com Actually, renames it to 'object'. This must be what the original author meant to write, as there's no 'object' in the error's data member. Signed-off-by: Luiz Capitulino --- qerror.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qerror.c b/qerror.c index 92c4eff..082de98 100644 --- a/qerror.c +++ b/qerror.c @@ -49,7 +49,7 @@ static const QErrorStringTable qerror_table[] = { }, { .error_fmt = QERR_AMBIGUOUS_PATH, - .desc = "Path '%(path)' does not uniquely identify a %(object)" + .desc = "Path '%(path)' does not uniquely identify an object" }, { .error_fmt = QERR_BAD_BUS_FOR_DEVICE, -- 1.7.11.2.249.g31c7954.dirty