Re: [dev] A small patch for sic.

From: Anselm R Garbe <garbeam_AT_gmail.com>
Date: Fri, 2 Aug 2013 22:21:52 +0200

Thanks applied, this took really a while ;)

Sorry for the inconvenience!

Best regards,
Anselm

On 20 February 2013 11:25, Mark Edgar <medgar123_AT_gmail.com> wrote:
> diff --git a/util.c b/util.c
> index 26953d0..8afa58f 100644
> --- a/util.c
> +++ b/util.c
> _AT_@ -49,7 +49,7 @@ strlcpy(char *to, const char *from, int l) {
>
> static char *
> eat(char *s, int (*p)(int), int r) {
> - while(s != '\0' && p(*s) == r)
> + while(*s != '\0' && p(*s) == r)
> s++;
> return s;
> }
>
> Hope that's in order! :)
>
> -Mark
>
Received on Fri Aug 02 2013 - 22:21:52 CEST

This archive was generated by hypermail 2.3.0 : Fri Aug 02 2013 - 22:24:17 CEST