Date: Tue, 8 Sep 1998 18:00:01 +0300 (IDT) From: Eli Zaretskii To: Elliott Oti cc: djgpp AT delorie DOT com Subject: Re: XWinAllegro In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Tue, 8 Sep 1998, Elliott Oti wrote: > allegro.h: In function `movedatal': > allegro.h:234: warning: cast to pointer from integer of different size > > -- I let these ride. Beware: Alpha's long is 64-bit wide whereas a pointer is 32 bits (or is it the other way around?), so the compiler tells you here that you are casting 64 bits to 32 bits, which is not a very good idea... Many programs which assume that pointers and longs are the same size break on Alpha (the core dump at run time).