From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:49144) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sus8H-0005vh-7b for qemu-devel@nongnu.org; Fri, 27 Jul 2012 17:31:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sus8G-00084F-9E for qemu-devel@nongnu.org; Fri, 27 Jul 2012 17:31:37 -0400 Received: from mx1.redhat.com ([209.132.183.28]:6768) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sus8G-000844-1Q for qemu-devel@nongnu.org; Fri, 27 Jul 2012 17:31:36 -0400 From: Luiz Capitulino Date: Fri, 27 Jul 2012 18:31:43 -0300 Message-Id: <1343424728-22461-3-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1343424728-22461-1-git-send-email-lcapitulino@redhat.com> References: <1343424728-22461-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH 02/27] 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, pbonzini@redhat.com, aliguori@us.ibm.com, eblake@redhat.com, armbru@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