From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 81AE51389F4 for ; Wed, 13 Feb 2013 09:23:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5AA70E0512; Wed, 13 Feb 2013 09:23:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B3F63E0495 for ; Wed, 13 Feb 2013 09:23:29 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B983D33E5AA for ; Wed, 13 Feb 2013 09:23:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 55D89E4089 for ; Wed, 13 Feb 2013 09:23:27 +0000 (UTC) From: "Sven Eden" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Eden" Message-ID: <1360744966.bfc655b3c4d9772b2b148247ea71035f8c93f396.yamakuzure@gentoo> Subject: [gentoo-commits] proj/ufed:master commit in: / X-VCS-Repository: proj/ufed X-VCS-Files: ufed-curses-help.c X-VCS-Directories: / X-VCS-Committer: yamakuzure X-VCS-Committer-Name: Sven Eden X-VCS-Revision: bfc655b3c4d9772b2b148247ea71035f8c93f396 X-VCS-Branch: master Date: Wed, 13 Feb 2013 09:23:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 57326c82-4f5f-44f9-8513-1b00a29690a3 X-Archives-Hash: b53fb29ac64cdcf76a53b4aa4d97dea8 commit: bfc655b3c4d9772b2b148247ea71035f8c93f396 Author: Sven Eden gmx de> AuthorDate: Wed Feb 13 08:42:46 2013 +0000 Commit: Sven Eden gmx de> CommitDate: Wed Feb 13 08:42:46 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/ufed.git;a=commit;h=bfc655b3 Fixed building of the help text. --- ufed-curses-help.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ufed-curses-help.c b/ufed-curses-help.c index fb54bf5..5788e1c 100644 --- a/ufed-curses-help.c +++ b/ufed-curses-help.c @@ -155,9 +155,9 @@ static void init_lines(void) if (n) { memcpy(buf, word, n); buf[n++] = '\0'; - addFlagDesc(line, NULL, buf, "+ "); + addFlagDesc(line, NULL, buf, "+ "); } else - addFlagDesc(line, NULL, " ", "+ "); + addFlagDesc(line, NULL, " ", "+ "); // Advance behind current spaces while (word[n] == ' ')