home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / programmer / 238 < prev    next >
Encoding:
Text File  |  1996-08-05  |  913 b   |  32 lines

  1. Newsgroups: comp.sys.amiga.programmer
  2. Path: mozart.unx.sas.com!walker
  3. From: walker@chang.unx.sas.com (Doug Walker)
  4. Subject: Re: Is this a SAS/C bug or have I coded it wrong?
  5. Originator: walker@chang.unx.sas.com
  6. Sender: news@unx.sas.com (Noter of Newsworthy Events)
  7. Message-ID: <DKoCGB.MLF@unx.sas.com>
  8. Date: Thu, 4 Jan 1996 20:48:10 GMT
  9. X-Nntp-Posting-Host: chang.unx.sas.com
  10. References:  <4cfrc5$gsc@misery.millcomm.com>
  11. Organization: SAS Institute Inc.
  12.  
  13.  
  14. In article <4cfrc5$gsc@misery.millcomm.com>, llucius@millcomm.com (Yambo) writes:
  15.  
  16. |>       if ( tmpbuf[0] & 0x1f == 1 )
  17.  
  18. Try this instead:
  19.  
  20.          if ( (tmpbuf[0] & 0x1f) == 1)
  21.  
  22. == has a higher precedence than &
  23.  
  24. -- 
  25.   *****                    / walker@unx.sas.com
  26.  *|_o_o|\\     Doug Walker<  BIX, Portal: djwalker
  27.  *|. o.| ||                \ AOL: weissblau
  28.   | o  |//     
  29.   ====== 
  30. Any opinions expressed are mine, not those of SAS Institute, Inc.
  31.  
  32.