Re: [dev] A small patch for sic.

2013-08-02 Thread Anselm R Garbe
Thanks applied, this took really a while ;) Sorry for the inconvenience! Best regards, Anselm On 20 February 2013 11:25, Mark Edgar wrote: > diff --git a/util.c b/util.c > index 26953d0..8afa58f 100644 > --- a/util.c > +++ b/util.c > @@ -49,7 +49,7 @@ strlcpy(char *to, const char *from, int l)

[dev] A small patch for sic.

2013-02-20 Thread Mark Edgar
diff --git a/util.c b/util.c index 26953d0..8afa58f 100644 --- a/util.c +++ b/util.c @@ -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+