From owner-freebsd-ports@FreeBSD.ORG Tue Feb 1 12:49:22 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0107416A4CE for ; Tue, 1 Feb 2005 12:49:22 +0000 (GMT) Received: from aurora-borealis.phear.org (rev.phear.org [212.76.255.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8306843D54 for ; Tue, 1 Feb 2005 12:49:20 +0000 (GMT) (envelope-from guzman@aurora-borealis.phear.org) Received: (from guzman@localhost) by aurora-borealis.phear.org id j11Cn1sj022604 for ports@freebsd.org; Tue, 1 Feb 2005 13:49:01 +0100 Date: Tue, 1 Feb 2005 13:49:01 +0100 From: guzman@zalem.net To: ports@freebsd.org Message-ID: <20050201124901.GA22120@zalem.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.4i Subject: patch for mille in freebsd-games X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Feb 2005 12:49:22 -0000 Hi, I noticed that the game mille in the ports freebsd-games doesn't respect the man rule, when a safety card is player it's "always entitles the player to an extra turn". the fact is that is doesn't do it. It comes from this error during compile : cc -O -pipe -c move.c move.c: In function `playcard': move.c:348: warning: comparison is always false due to limited range of data type move.c : Next = (Next == -1 ? FALSE : TRUE); where Next is a bool, so an usigned char (from curses.h). it's easy to fix, just making Next a char and all back to normal. I've attached patches if you ever interested in correcting this ports :) I've checked on the last pkg available, and in the source, the error is present. Sincerely, Guzman guzman@zalem.net