From patchwork Fri Jun 24 16:56:43 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 101829 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id BA48EB6F88 for ; Sat, 25 Jun 2011 03:02:03 +1000 (EST) Received: from localhost ([::1]:32950 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qa9lW-0004eL-Ls for incoming@patchwork.ozlabs.org; Fri, 24 Jun 2011 13:01:58 -0400 Received: from eggs.gnu.org ([140.186.70.92]:46545) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qa9hO-0004Va-5i for qemu-devel@nongnu.org; Fri, 24 Jun 2011 12:57:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qa9hL-0001Wz-Jv for qemu-devel@nongnu.org; Fri, 24 Jun 2011 12:57:41 -0400 Received: from mail-fx0-f45.google.com ([209.85.161.45]:58586) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qa9hK-0001W2-G5 for qemu-devel@nongnu.org; Fri, 24 Jun 2011 12:57:39 -0400 Received: by mail-fx0-f45.google.com with SMTP id 12so94462fxg.4 for ; Fri, 24 Jun 2011 09:57:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:cc:subject:date:message-id:x-mailer :in-reply-to:references; bh=Jy1Ama7xuIyOjTh2/QkOxA0gw5VR/tp5t0zmAfgcLqA=; b=JPLNVa3kv/l3LP4anIi/Btk3GQowCNYP/UtP0+34JCpLN3X8/LbdsylVbEEK0JMo01 e/7h27leuOFRUNX0Tue0ekNIpENtzqRdZ6l86z5M7zD7/ZpCT7UI3loxgCDllGinRtZC v8nnYm5HvpJY9eqVOprhOECdyLgbyGNhGOPCk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=cGe/2/pj233xwq9InxolmA8RNNjkiNU+2XnYzCQBPjSQYO4AVT4QbEKMAwwKsW9Lh+ s3YHV00zHILQ9Q434RmE5uF3ZJgdjSfzq6HY2cosdEfN+H6gK9BN1nAQeTt+WzfIB5WE EGqedbqkGi4F09SGkbXHF2gPjh8ESBspGv8mA= Received: by 10.223.74.83 with SMTP id t19mr4703386faj.149.1308934657980; Fri, 24 Jun 2011 09:57:37 -0700 (PDT) Received: from localhost.localdomain (gbibp9ph1--blueice3n2.emea.ibm.com [195.212.29.84]) by mx.google.com with ESMTPS id h28sm1763884faj.5.2011.06.24.09.57.36 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 24 Jun 2011 09:57:37 -0700 (PDT) From: Stefan Hajnoczi To: Date: Fri, 24 Jun 2011 17:56:43 +0100 Message-Id: <1308934609-20824-8-git-send-email-stefanha@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1308934609-20824-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1308934609-20824-1-git-send-email-stefanha@linux.vnet.ibm.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.161.45 Cc: Anthony Liguori , Markus Armbruster , Stefan Hajnoczi Subject: [Qemu-devel] [PATCH 07/13] blockdev: Put space after comma in error message X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Markus Armbruster Signed-off-by: Markus Armbruster Signed-off-by: Stefan Hajnoczi --- blockdev.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/blockdev.c b/blockdev.c index 1502575..7d579d6 100644 --- a/blockdev.c +++ b/blockdev.c @@ -293,7 +293,7 @@ DriveInfo *drive_init(QemuOpts *opts, int default_to_scsi) if ((buf = qemu_opt_get(opts, "trans")) != NULL) { if (!cyls) { - error_report("'%s' trans must be used with cyls,heads and secs", + error_report("'%s' trans must be used with cyls, heads and secs", buf); return NULL; }