It could also have been fixed by changing the:
  DBUG_POP();
to:
  DBUG_POP()

Notice the ; on the end effectively terminating the if statement.

Happy coding.
Chris

> -----Original Message-----
> From: Jeremy Zawodny [EMAIL PROTECTED] XXXXXXXXXXXXXXXX
> [mailto:XXXXXXXXXXXXXXXXXXXXXXXXX]
> Sent: Sunday, February 10, 2002 3:28 PM
> To: XXXXXXXXXXXXXXXXXXXXXXXX
> Subject: Re: Request for help in testing new replication code in 4.0.2
> 
> 
> On Sun, Feb 10, 2002 at 10:24:30PM +0100, Fournier Jocelyn 
> [Presence-PC] wrote:
> > Hi,
> > 
> > In myisamchk.c replace the following line :
> > 
> >    if (argument && *argument == '0')
> >       DBUG_POP();
> >     else
> >       DBUG_PUSH(argument ? argument : "d:t:o,/tmp/myisamchk.trace");
> > 
> > by
> > 
> >     if (argument && *argument == '0')
> >     {
> >       DBUG_POP();
> >     }
> >     else
> >     {
> >       DBUG_PUSH(argument ? argument : "d:t:o,/tmp/myisamchk.trace");
> >     }
> > 
> > Like this it works perfectly for me :)
> 
> Yeah, that works.  I had just commented out that bit and moved on.
> Worked fine after that.
> 
> Since I didn't know if it was just a typo or the result of an
> incomplete commit, I didn't want to try and "fix" it.
> 
> But I'll probably use you solution until a fix is pushed.
> 
> Thanks,
> 
> Jeremy
> -- 
> Jeremy D. Zawodny, <[EMAIL PROTECTED]>
> Technical Yahoo - Yahoo Finance
> Desk: (408) 349-7878   Fax: (408) 349-5454   Cell: (408) 685-5936
> 
> MySQL 3.23.47-max: up 3 days, processed 113,132,847 queries 
> (396/sec. avg)
> 
> ---------------------------------------------------------------------
> Before posting, please check:
>    http://www.mysql.com/manual.php   (the manual)
>    http://lists.mysql.com/           (the list archive)
> 
> To request this thread, e-mail <[EMAIL PROTECTED]>
> To unsubscribe, e-mail 
> <[EMAIL PROTECTED]>
> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
> 
> 



---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to