On Wed, Nov 23, 2005 at 12:15:57PM +0100, Dominik Vogt wrote:
> On Mon, Nov 21, 2005 at 11:41:13AM -0500, Harry Felder wrote:
> > Hi all:
> > 
> > Attached is a simple patch to avoid an error generated by the Solaris
> > WorkShop 6.2 cc compiler.
> 
> Thanks for the patch, I've committed it to CVS (modified
> slightly).
> 
> >     for (other=proxy->next; other; other=other->next)
> >     {
> > +                int dx, dy;
> >             if(other->desk != deskNumber)
> >                     continue;
> >  
> > -           int dx=abs(proxy->proxyx-other->proxyx);
> > -           int dy=abs(proxy->proxyy-other->proxyy);
> > +           dx=abs(proxy->proxyx-other->proxyx);
> > +           dy=abs(proxy->proxyy-other->proxyy);
> >             if (dx<(proxyWidth+proxySeparation) &&
> >                             dy<proxyHeight+proxySeparation )
> >             {
> 
> In-block declarations must not be used in fvwm as they are not
> covered by the C() standard.
> 
> Ciao
> 
> Dominik ^_^  ^_^
> 
>  --
> Dominik Vogt, [EMAIL PROTECTED]

It must have slipped by.  Is there a gnu compile flag we can use
to enforce this?

-- 
  _
 ( \      _  \    /_ /  _ _  Jason Weber                  Glendale, CA
  \|(\/)()))  \/\/(-/_)(-/(  http://www.imonk.com/baboon  [EMAIL PROTECTED]
  //                                                      [EMAIL PROTECTED]
 (/

Reply via email to