Path: utzoo!attcan!uunet!mcsun!unido!fauern!lan!brychcy From: brychcy@informatik.tu-muenchen.dbp.de (Till Brychcy) Newsgroups: comp.os.minix Subject: Re: MINIX-ST 1.5 patch #1: fixed binary /usr/bin/as Message-ID: <5368@tuminfo1.lan.informatik.tu-muenchen.dbp.de> Date: 6 Nov 90 17:29:21 GMT References: <700@philica.ica.philips.nl> Sender: news@lan.informatik.tu-muenchen.dbp.de Organization: Inst. fuer Informatik, Technische Univ. Muenchen, West Germany Lines: 6 In-reply-to: johan@philica.ica.philips.nl's message of 4 Nov 90 22:41:25 GMT > differently. Anyway, we changed the source into the less ambigious: > if ((val & ~((int)07)) == 0) > Horrible, but it works. if ((val & ~07L) == 0) looks better and should work too.