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 E79B359CAF for ; Fri, 1 Apr 2016 21:42:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2730221C014; Fri, 1 Apr 2016 21:42:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9C0AF21C014 for ; Fri, 1 Apr 2016 21:42:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3FB8E340DA6 for ; Fri, 1 Apr 2016 21:42:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A0AFD7A for ; Fri, 1 Apr 2016 21:42:43 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1459546727.40ec23a61a89940dca84f0616703cc4f7225f2fd.vapier@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: / X-VCS-Repository: proj/portage-utils X-VCS-Files: main.c X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 40ec23a61a89940dca84f0616703cc4f7225f2fd X-VCS-Branch: master Date: Fri, 1 Apr 2016 21:42:43 +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: 48c7f9cb-bc65-4418-9df4-7907451aa83e X-Archives-Hash: 7548432206ec7d0f41e73f9287aab29d commit: 40ec23a61a89940dca84f0616703cc4f7225f2fd Author: Mike Frysinger gentoo org> AuthorDate: Fri Apr 1 21:38:47 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Fri Apr 1 21:38:47 2016 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=40ec23a6 change reinitialize type We started using negative values in commit 26d038ae9c2f499cfb52486913c, but some targets define "char" as "unsigned". Switch to "int" to avoid that issue. main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index a50b451..8e6d4fd 100644 --- a/main.c +++ b/main.c @@ -31,8 +31,8 @@ int verbose = 0; int quiet = 0; int portcachedir_type = 0; char pretend = 0; -char reinitialize = 0; -char reinitialize_metacache = 0; +static int reinitialize = 0; +static int reinitialize_metacache = 0; static char *portlogdir; static char *main_overlay; static char *portarch;