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 D6D6D198002 for ; Tue, 5 Mar 2013 16:54:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8ED1E06D7; Tue, 5 Mar 2013 16:54:01 +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 62401E06D7 for ; Tue, 5 Mar 2013 16:54:01 +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 28D2433DF37 for ; Tue, 5 Mar 2013 16:54:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id B481AE4073 for ; Tue, 5 Mar 2013 16:53:58 +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: <1362502492.6bbc50cccdfad7790be9135778f66308dfbdcd49.yamakuzure@gentoo> Subject: [gentoo-commits] proj/ufed:master commit in: / X-VCS-Repository: proj/ufed X-VCS-Files: ufed-curses-checklist.c X-VCS-Directories: / X-VCS-Committer: yamakuzure X-VCS-Committer-Name: Sven Eden X-VCS-Revision: 6bbc50cccdfad7790be9135778f66308dfbdcd49 X-VCS-Branch: master Date: Tue, 5 Mar 2013 16:53:58 +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: f8657ac0-cb81-4ce8-8f98-5e04d03bf594 X-Archives-Hash: 84117260eadad69523f5805a7d551e95 commit: 6bbc50cccdfad7790be9135778f66308dfbdcd49 Author: Sven Eden gmx de> AuthorDate: Tue Mar 5 16:54:52 2013 +0000 Commit: Sven Eden gmx de> CommitDate: Tue Mar 5 16:54:52 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/ufed.git;a=commit;h=6bbc50cc Fixed a typo: package/description order toggle is F9, not F8. --- ufed-curses-checklist.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ufed-curses-checklist.c b/ufed-curses-checklist.c index 6eb2d6f..003fc9a 100644 --- a/ufed-curses-checklist.c +++ b/ufed-curses-checklist.c @@ -27,7 +27,7 @@ static const sKey keys[] = { { KEY_F(5), mkKey("F5: Local/Global"), 1 }, { KEY_F(6), mkKey("F6: Installed"), 1 }, { KEY_F(7), mkKey("F7: Masked/Forced"), 1 }, - { KEY_F(9), mkKey("F8: Pkg/Desc Order"), 1 }, + { KEY_F(9), mkKey("F9: Pkg/Desc Order"), 1 }, { '\0', mkKey(""), 0 } }; #undef mkKey