Xref: utzoo comp.sys.amiga:75816 comp.sys.amiga.tech:17459 Path: utzoo!censor!geac!torsqnt!news-server.csri.toronto.edu!cs.utexas.edu!wuarchive!julius.cs.uiuc.edu!rpi!uupsi!sunic!kth.se!cyklop.nada.kth.se!news From: d88-skl@dront.nada.kth.se (Stellan Klebom) Newsgroups: comp.sys.amiga,comp.sys.amiga.tech Subject: Re: "chip" in SAS C Message-ID: <1991Jan5.012448.6627@nada.kth.se> Date: 5 Jan 91 01:24:48 GMT References: <1991Jan4.031246.20044@cs.uoregon.edu> Organization: Royal Institute of Technology, Stockholm, Sweden Lines: 14 In article sie@fulcrum.bt.co.uk (Simon Raybould) writes: > >USHORT __chip Image={0xF700,0xF700}; > Isn't it so that you cant initialize a short with a aggregate initializer? ;) I think that what was intended is the following: USHORT __chip Image[]={0xF700,0xF700}; Also, use UWORD instead of USHORT since USHORT is obsolete... Stellan