From patchwork Fri Aug 31 14:50:05 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Genoud X-Patchwork-Id: 180989 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from merlin.infradead.org (unknown [IPv6:2001:4978:20e::2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 80CED2C034F for ; Sat, 1 Sep 2012 00:51:27 +1000 (EST) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1T7SYC-0001Ff-Hr; Fri, 31 Aug 2012 14:50:24 +0000 Received: from mail-wg0-f41.google.com ([74.125.82.41]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1T7SY9-0001EP-94 for linux-mtd@lists.infradead.org; Fri, 31 Aug 2012 14:50:22 +0000 Received: by wgbds1 with SMTP id ds1so805098wgb.0 for ; Fri, 31 Aug 2012 07:50:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer; bh=lNlBkMuk5VD5BTb30RJbCud6vwgh1o+tRZGmW9JJ6yA=; b=vYDE82ihQ0EuYmN/mqlHxpPVmvfTVh6aaCriERwdYSrX6DtHpoaQiqq7/dJmPSyZ9T AhUHrdQBxIPCGlAtJ3uIVY5wlFzSMFs7SAcbfJax8Q1TYFUYTa6/txCSCNJXIZdxRual IZ1O3lAX/Ks1rfEK2czY6hRqZYkUA1s2MJfiTH0hG3Zsf83kWDmJQZetWwKpAIf/m4IZ XZ1xYA/ub2RpSGadcc90AimXfgUpnEhkvlWZHxm4S8zf9YIx6lR/HPhBqj8nHUWZfpcb lkZz02tpmgSP/C/702ZZVIp0mKfL28An1pzO+Y9iJTjdDk+Wz63TPnQK2FFeXgMKtnO3 gOXg== Received: by 10.217.2.133 with SMTP id p5mr5106614wes.143.1346424618803; Fri, 31 Aug 2012 07:50:18 -0700 (PDT) Received: from localhost.localdomain (lyon.paratronic.fr. [213.41.177.106]) by mx.google.com with ESMTPS id l5sm1929089wix.5.2012.08.31.07.50.10 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 31 Aug 2012 07:50:11 -0700 (PDT) From: Richard Genoud To: Artem Bityutskiy Subject: [PATCH] ubirmvol: correct missing space on usage Date: Fri, 31 Aug 2012 16:50:05 +0200 Message-Id: <1346424605-17466-1-git-send-email-richard.genoud@gmail.com> X-Mailer: git-send-email 1.7.2.5 X-Spam-Note: CRM114 invocation failed X-Spam-Score: -2.7 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.7 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (richard.genoud[at]gmail.com) -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [74.125.82.41 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: Richard Genoud , linux-mtd@lists.infradead.org X-BeenThere: linux-mtd@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-mtd-bounces@lists.infradead.org Errors-To: linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org Signed-off-by: Richard Genoud --- ubi-utils/ubirmvol.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ubi-utils/ubirmvol.c b/ubi-utils/ubirmvol.c index 464f05d..3370aff 100644 --- a/ubi-utils/ubirmvol.c +++ b/ubi-utils/ubirmvol.c @@ -57,9 +57,9 @@ static const char optionsstr[] = static const char usage[] = "Usage: " PROGRAM_NAME " [-n ] [--vol_id=]\n\n" " [-N ] [--name=] [-h] [--help]\n\n" -"Example: " PROGRAM_NAME "/dev/ubi0 -n 1 - remove UBI volume 1 from UBI device corresponding\n" +"Example: " PROGRAM_NAME " /dev/ubi0 -n 1 - remove UBI volume 1 from UBI device corresponding\n" " to /dev/ubi0\n" -" " PROGRAM_NAME "/dev/ubi0 -N my_vol - remove UBI named \"my_vol\" from UBI device\n" +" " PROGRAM_NAME " /dev/ubi0 -N my_vol - remove UBI named \"my_vol\" from UBI device\n" " corresponding to /dev/ubi0"; static const struct option long_options[] = {