Path: chuka.playstation.co.uk!news From: James Undery Newsgroups: scee.yaroze.programming.codewarrior Subject: Re: Reporting Bugs Date: Tue, 18 Mar 1997 13:56:40 -0800 Organization: df Lines: 18 Message-ID: <332F0F97.7C03@glam.ac.uk> References: <01bc318d$e9ab5200$5b18989e@civy> NNTP-Posting-Host: 193.63.132.194 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mozilla 4.0b2 (Win16; I) X-Priority: 3 (Normal) Richard Maddocks wrote: Can someone check if the following is a bug with codewarrior? I left of the 0x to represent hex and the compiler blew out. long aa; aa = 800c0000; thanks Richard This isn't a bug, it's the ANSI standard being strict about constants. You wouldn't want 0ff being taken as 0xFF if you meant to type (a contrived variable such as) 'off'. James