swarm-support
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: problem making swarm-1.4.1 (-O3) under rh6.0


From: Marcus G. Daniels
Subject: Re: problem making swarm-1.4.1 (-O3) under rh6.0
Date: 03 Jun 1999 08:06:28 -0700
User-agent: Gnus/5.070084 (Pterodactyl Gnus v0.84) Emacs/20.3.10

>>>>> "RLR" == Rick Riolo <address@hidden> writes:

RLR> warning: `type' might be used uninitialized in this function

RLR> const char*
RLR> skip_typespec (const char *type)
RLR> {
RLR>  type = skip_type_qualifiers (type);  
 
Try changing it to:

const char*
skip_typespec (const char *intype)
{
  const char *type = skip_type_qualifiers (intype);  

..that will probably silence the error.  (On sparc-sun-solaris2.7, with the
current snapshot of gcc, I don't get the warning with -O3.)

                  ==================================
   Swarm-Support is for discussion of the technical details of the day
   to day usage of Swarm.  For list administration needs (esp.
   [un]subscribing), please send a message to <address@hidden>
   with "help" in the body of the message.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]