From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,5c8024b730bb1bfb X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-11-04 07:39:42 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!hammer.uoregon.edu!skates!not-for-mail From: Stephen Leake Newsgroups: comp.lang.ada Subject: Re: Compiler error: 'Expect procedure name in procedure call' Date: 04 Nov 2002 10:35:29 -0500 Organization: NASA Goddard Space Flight Center (skates.gsfc.nasa.gov) Message-ID: References: <445cd6bf.0211040705.3b638858@posting.google.com> NNTP-Posting-Host: anarres.gsfc.nasa.gov Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: skates.gsfc.nasa.gov 1036424790 6150 128.183.235.92 (4 Nov 2002 15:46:30 GMT) X-Complaints-To: usenet@news.gsfc.nasa.gov NNTP-Posting-Date: 4 Nov 2002 15:46:30 GMT User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Xref: archiver1.google.com comp.lang.ada:30349 Date: 2002-11-04T15:46:30+00:00 List-Id: j_del_strother@hotmail.com (Jon) writes: > I'm using the GCC compiler, and I'm getting the error 'Expect > procedure name in procedure call'. > Anyone tell me what the heck this means? Probably exactly what it says; the compiler thinks you are making a procedure call, so it is expecting a procedure name. Instead, you've given it something else; a variable, package, or function name (to name just a few of the possibilities). Or maybe you didn't mean to make a procedure call, and you've got the wrong syntax. Post the code to get more help. -- -- Stephe