From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nq9Ze-000102-CL for qemu-devel@nongnu.org; Fri, 12 Mar 2010 13:27:02 -0500 Received: from [199.232.76.173] (port=50911 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nq9Zd-0000zQ-3X for qemu-devel@nongnu.org; Fri, 12 Mar 2010 13:27:01 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1Nq9ZZ-0003Vh-OF for qemu-devel@nongnu.org; Fri, 12 Mar 2010 13:27:00 -0500 Received: from mail.freegeek.org ([67.51.72.37]:45443 helo=george.freegeek.org) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Nq9ZZ-0003T5-6K for qemu-devel@nongnu.org; Fri, 12 Mar 2010 13:26:57 -0500 Received: from localhost (localhost [127.0.0.1]) by george.freegeek.org (Postfix) with ESMTP id 98DC815CBFD for ; Fri, 12 Mar 2010 10:26:38 -0800 (PST) Received: from george.freegeek.org ([127.0.0.1]) by localhost (george.fglan [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zyHrPDhnHJUc for ; Fri, 12 Mar 2010 10:26:38 -0800 (PST) Received: from claws.fglan (unknown [192.168.3.44]) by george.freegeek.org (Postfix) with ESMTPS id 6BF0715CBB4 for ; Fri, 12 Mar 2010 10:26:38 -0800 (PST) Received: from vagrant by claws.fglan with local (Exim 4.69) (envelope-from ) id 1Nq9ZB-0003kQ-9m for qemu-devel@nongnu.org; Fri, 12 Mar 2010 10:26:33 -0800 Date: Fri, 12 Mar 2010 10:26:33 -0800 From: Vagrant Cascadian Message-ID: <20100312182633.GC8032@claws.fglan> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] spelling typo (compatibilty) in hw/fw_cfg.c List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org here's a trivial patch to fix the spelling of "compatibility": diff --git a/hw/fw_cfg.c b/hw/fw_cfg.c index fe6c543..22ebb50 100644 --- a/hw/fw_cfg.c +++ b/hw/fw_cfg.c @@ -179,7 +179,7 @@ static int get_uint32_as_uint16(QEMUFile *f, void *pv, size_t size) static void put_unused(QEMUFile *f, void *pv, size_t size) { - fprintf(stderr, "uint32_as_uint16 is only used for backward compatibilty.\n"); + fprintf(stderr, "uint32_as_uint16 is only used for backward compatibility.\n"); fprintf(stderr, "This functions shouldn't be called.\n"); } i found this spelling typo and the previous one by running lintian on the qemu packages i work on for debian: http://lintian.debian.org/full/pkg-qemu-devel@lists.alioth.debian.org.html#qemu live well, vagrant