From mboxrd@z Thu Jan 1 00:00:00 1970 From: Charles Duffy Subject: Changeset for reisermodule x86_64 compilation w/ -Wall Date: Tue, 11 Oct 2005 03:14:55 -0500 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org Compiling with -Wall is failing for me without application of this patch. I'm fairly sure someone else has independently proposed (pretty much) the same thing, but given that it didn't get applied, I'm reproposing it here. # HG changeset patch # User cduffy@spamcop.net # Node ID f3f8213f8d895c1b4e29647132aaea8633fb4825 # Parent e69413dca6844c87885121a7360fa7c2b11cdea9 fix 64-bit compilation diff -r e69413dca684 -r f3f8213f8d89 tools/pygrub/src/fsys/reiser/reisermodule.c --- a/tools/pygrub/src/fsys/reiser/reisermodule.c Sat Oct 8 09:22:01 2005 +++ b/tools/pygrub/src/fsys/reiser/reisermodule.c Tue Oct 11 07:51:18 2005 @@ -46,7 +46,7 @@ if (!dal) return; - close((int)dal->dev); + close((size_t)dal->dev); dal_free(dal); }